[FFmpeg-cvslog] x86: h264_qpel: Simplify an #if conditional
Diego Biurrun
git at videolan.org
Sat Apr 5 19:36:43 CEST 2014
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Mar 26 04:41:26 2014 -0700| [c2c5be57494e6117086771bca34c8cd4c72c8e99] | committer: Diego Biurrun
x86: h264_qpel: Simplify an #if conditional
The extra conditions are covered by previous #ifs and conditional compilation.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c2c5be57494e6117086771bca34c8cd4c72c8e99
---
libavcodec/x86/h264_qpel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/x86/h264_qpel.c b/libavcodec/x86/h264_qpel.c
index b285c1f..8793b5d 100644
--- a/libavcodec/x86/h264_qpel.c
+++ b/libavcodec/x86/h264_qpel.c
@@ -497,7 +497,7 @@ QPEL16_OP(mc31, MMX)\
QPEL16_OP(mc32, MMX)\
QPEL16_OP(mc33, MMX)
-#if ARCH_X86_32 && HAVE_YASM && CONFIG_H264QPEL // ARCH_X86_64 implies SSE2+
+#if ARCH_X86_32 // ARCH_X86_64 implies SSE2+
QPEL16(mmxext)
#endif
More information about the ffmpeg-cvslog
mailing list