Browse Source

Merge commit 'e445647b4fdf481b13b2743b303d84de4f43bedd'

* commit 'e445647b4fdf481b13b2743b303d84de4f43bedd':
  avresample: Add av_cold attributes to init functions missing them

Merged-by: Michael Niedermayer <michaelni@gmx.at>
Michael Niedermayer 12 years ago
parent
commit
b507c00dc0
2 changed files with 4 additions and 3 deletions
  1. 1 1
      libavresample/audio_mix.c
  2. 3 2
      libavresample/dither.c

+ 1 - 1
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->func_descr = am->func_descr_generic = "n/a";
     am->mix = am->mix_generic = NULL;
     am->mix = am->mix_generic = NULL;

+ 3 - 2
libavresample/dither.c

@@ -31,6 +31,7 @@
 #include <math.h>
 #include <math.h>
 #include <stdint.h>
 #include <stdint.h>
 
 
+#include "libavutil/attributes.h"
 #include "libavutil/common.h"
 #include "libavutil/common.h"
 #include "libavutil/lfg.h"
 #include "libavutil/lfg.h"
 #include "libavutil/mem.h"
 #include "libavutil/mem.h"
@@ -325,8 +326,8 @@ void ff_dither_free(DitherContext **cp)
     av_freep(cp);
     av_freep(cp);
 }
 }
 
 
-static void dither_init(DitherDSPContext *ddsp,
-                        enum AVResampleDitherMethod method)
+static av_cold void dither_init(DitherDSPContext *ddsp,
+                                enum AVResampleDitherMethod method)
 {
 {
     ddsp->quantize      = quantize_c;
     ddsp->quantize      = quantize_c;
     ddsp->ptr_align     = 1;
     ddsp->ptr_align     = 1;