[FFmpeg-cvslog] avcodec/x86/dcadsp_init: fix compilation failure without FMA3
Michael Niedermayer
git at videolan.org
Sat Apr 5 00:13:47 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Apr 4 23:57:26 2014 +0200| [490d53e335dc5954d1308172af374e9bf9d031eb] | committer: Michael Niedermayer
avcodec/x86/dcadsp_init: fix compilation failure without FMA3
alternatively the call could be put under #if or the #if
over the function removed
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=490d53e335dc5954d1308172af374e9bf9d031eb
---
libavcodec/x86/dcadsp_init.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavcodec/x86/dcadsp_init.c b/libavcodec/x86/dcadsp_init.c
index bc94b44..5975fee 100644
--- a/libavcodec/x86/dcadsp_init.c
+++ b/libavcodec/x86/dcadsp_init.c
@@ -82,6 +82,10 @@ SYNTH_FILTER_FUNC(sse)
#endif
SYNTH_FILTER_FUNC(sse2)
SYNTH_FILTER_FUNC(avx)
+static void synth_filter_fma3(FFTContext *imdct,
+ float *synth_buf_ptr, int *synth_buf_offset,
+ float synth_buf2[32], const float window[512],
+ float out[32], const float in[32], float scale);
#if HAVE_FMA3_EXTERNAL
SYNTH_FILTER_FUNC(fma3)
#endif
More information about the ffmpeg-cvslog
mailing list