diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-30 18:31:25 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-04 22:48:05 +0200 |
commit | 1fda184a85178cfd7b98d9e308d18e1ded76a511 (patch) | |
tree | d1b78c0123ad08511b03f7108f3d7bbb8bd4d71a /libavutil/float_dsp.c | |
parent | 20c86571ccc71412781d4a4813e4693e0c42aec6 (diff) | |
download | ffmpeg-1fda184a85178cfd7b98d9e308d18e1ded76a511.tar.gz |
avutil: Add av_cold attributes to init functions missing them
Diffstat (limited to 'libavutil/float_dsp.c')
-rw-r--r-- | libavutil/float_dsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/float_dsp.c b/libavutil/float_dsp.c index a40b029a29..3eda27a3c3 100644 --- a/libavutil/float_dsp.c +++ b/libavutil/float_dsp.c @@ -17,7 +17,7 @@ */ #include "config.h" - +#include "libavutil/attributes.h" #include "float_dsp.h" static void vector_fmul_c(float *dst, const float *src0, const float *src1, @@ -112,7 +112,7 @@ float avpriv_scalarproduct_float_c(const float *v1, const float *v2, int len) return p; } -void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int bit_exact) +av_cold void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int bit_exact) { fdsp->vector_fmul = vector_fmul_c; fdsp->vector_fmac_scalar = vector_fmac_scalar_c; |