diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-20 22:12:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-20 22:13:07 +0100 |
commit | 7b7f8d3ed03d5d8f6c042644bf82a86ae2f996e4 (patch) | |
tree | d3f9782c9f3af696982d44f9f0731eaa79e1518a /libavresample | |
parent | dc6eadaa458aa2e3ce407459b37e8f8403e455b4 (diff) | |
parent | df0891fc8f32db3ced797cd6ebff9492fda01b99 (diff) | |
download | ffmpeg-streaming-7b7f8d3ed03d5d8f6c042644bf82a86ae2f996e4.zip ffmpeg-streaming-7b7f8d3ed03d5d8f6c042644bf82a86ae2f996e4.tar.gz |
Merge commit 'df0891fc8f32db3ced797cd6ebff9492fda01b99'
* commit 'df0891fc8f32db3ced797cd6ebff9492fda01b99':
libavresample: Annotate AARCH64 init function with av_cold
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavresample')
-rw-r--r-- | libavresample/aarch64/resample_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavresample/aarch64/resample_init.c b/libavresample/aarch64/resample_init.c index d3dfb12..e21c600 100644 --- a/libavresample/aarch64/resample_init.c +++ b/libavresample/aarch64/resample_init.c @@ -45,8 +45,8 @@ void ff_resample_one_s32_neon(struct ResampleContext *c, void *dst0, int dst_index, const void *src0, unsigned int index, int frac); -void ff_audio_resample_init_aarch64(ResampleContext *c, - enum AVSampleFormat sample_fmt) +av_cold void ff_audio_resample_init_aarch64(ResampleContext *c, + enum AVSampleFormat sample_fmt) { int cpu_flags = av_get_cpu_flags(); |