diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-30 18:30:48 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-04 21:10:05 +0200 |
commit | e445647b4fdf481b13b2743b303d84de4f43bedd (patch) | |
tree | d094fdf99e5888d629a6c90fc6fc30416a340331 /libavresample/audio_mix.c | |
parent | 093804a93cc5da3f95f98265a5df116912443cec (diff) | |
download | ffmpeg-e445647b4fdf481b13b2743b303d84de4f43bedd.tar.gz |
avresample: Add av_cold attributes to init functions missing them
Diffstat (limited to 'libavresample/audio_mix.c')
-rw-r--r-- | libavresample/audio_mix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/audio_mix.c b/libavresample/audio_mix.c index b69bfbcf3e..e6f941727c 100644 --- a/libavresample/audio_mix.c +++ b/libavresample/audio_mix.c @@ -282,7 +282,7 @@ static void mix_2_to_6_fltp_flt_c(float **samples, float **matrix, int len, } } -static int mix_function_init(AudioMix *am) +static av_cold int mix_function_init(AudioMix *am) { am->func_descr = am->func_descr_generic = "n/a"; am->mix = am->mix_generic = NULL; |