diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-01 10:31:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-05 17:01:05 +0100 |
commit | c9f933b5b62d3054021fcdca8597d1c2fb6bdb2f (patch) | |
tree | c806492fc39c6605545f5e2b216fdfb36ed4840b /libavcodec/arm/mpegaudiodsp_init_arm.c | |
parent | 25841dfe806a13de526ae09c11149ab1f83555a8 (diff) | |
download | ffmpeg-c9f933b5b62d3054021fcdca8597d1c2fb6bdb2f.tar.gz |
Add av_cold attributes to arch-specific init functions
Diffstat (limited to 'libavcodec/arm/mpegaudiodsp_init_arm.c')
-rw-r--r-- | libavcodec/arm/mpegaudiodsp_init_arm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/arm/mpegaudiodsp_init_arm.c b/libavcodec/arm/mpegaudiodsp_init_arm.c index a9804e976c..e73aee6a2b 100644 --- a/libavcodec/arm/mpegaudiodsp_init_arm.c +++ b/libavcodec/arm/mpegaudiodsp_init_arm.c @@ -20,6 +20,7 @@ #include <stdint.h> +#include "libavutil/attributes.h" #include "libavutil/arm/cpu.h" #include "libavcodec/mpegaudiodsp.h" #include "config.h" @@ -27,7 +28,7 @@ void ff_mpadsp_apply_window_fixed_armv6(int32_t *synth_buf, int32_t *window, int *dither, int16_t *out, int incr); -void ff_mpadsp_init_arm(MPADSPContext *s) +av_cold void ff_mpadsp_init_arm(MPADSPContext *s) { int cpu_flags = av_get_cpu_flags(); |