[FFmpeg-cvslog] x86/synth_filter: remove the fma3 version ifdefs
James Almer
git at videolan.org
Sun Apr 13 14:48:53 CEST 2014
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sat Apr 5 14:00:53 2014 -0300| [0f524b6c690962d7ebbd59ded74288e1e9b0f009] | committer: Anton Khirnov
x86/synth_filter: remove the fma3 version ifdefs
This fixes compilation failures with --disable-fma3
Signed-off-by: James Almer <jamrial at gmail.com>
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0f524b6c690962d7ebbd59ded74288e1e9b0f009
---
libavcodec/x86/dcadsp.asm | 2 --
libavcodec/x86/dcadsp_init.c | 2 --
2 files changed, 4 deletions(-)
diff --git a/libavcodec/x86/dcadsp.asm b/libavcodec/x86/dcadsp.asm
index 59d96bf..c42ee23 100644
--- a/libavcodec/x86/dcadsp.asm
+++ b/libavcodec/x86/dcadsp.asm
@@ -418,7 +418,5 @@ INIT_XMM sse2
SYNTH_FILTER
INIT_YMM avx
SYNTH_FILTER
-%if HAVE_FMA3_EXTERNAL
INIT_YMM fma3
SYNTH_FILTER
-%endif
diff --git a/libavcodec/x86/dcadsp_init.c b/libavcodec/x86/dcadsp_init.c
index beef288..9acb818 100644
--- a/libavcodec/x86/dcadsp_init.c
+++ b/libavcodec/x86/dcadsp_init.c
@@ -82,9 +82,7 @@ SYNTH_FILTER_FUNC(sse)
#endif
SYNTH_FILTER_FUNC(sse2)
SYNTH_FILTER_FUNC(avx)
-#if HAVE_FMA3_EXTERNAL
SYNTH_FILTER_FUNC(fma3)
-#endif
#endif /* HAVE_YASM */
av_cold void ff_synth_filter_init_x86(SynthFilterContext *s)
More information about the ffmpeg-cvslog
mailing list