diff options
author | Peter Meerwald <pmeerw@pmeerw.net> | 2015-02-19 23:28:27 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-02-20 19:32:37 +0200 |
commit | df0891fc8f32db3ced797cd6ebff9492fda01b99 (patch) | |
tree | d3371808b765e5429ced3b8562e4b58ed98fc903 /libavresample | |
parent | 46ad9ac9641d1fe8292ec1f46bbd2e4456621ca7 (diff) | |
download | ffmpeg-streaming-df0891fc8f32db3ced797cd6ebff9492fda01b99.zip ffmpeg-streaming-df0891fc8f32db3ced797cd6ebff9492fda01b99.tar.gz |
libavresample: Annotate AARCH64 init function with av_cold
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: Martin Storsjö <martin@martin.st>
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 9ef9977..ec321a3 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(); |