]> git.sesse.net Git - ffmpeg/commitdiff
x86: h264_qpel: Simplify an #if conditional
authorDiego Biurrun <diego@biurrun.de>
Wed, 26 Mar 2014 11:41:26 +0000 (04:41 -0700)
committerDiego Biurrun <diego@biurrun.de>
Fri, 4 Apr 2014 17:08:05 +0000 (19:08 +0200)
The extra conditions are covered by previous #ifs and conditional compilation.

libavcodec/x86/h264_qpel.c

index b285c1fecfd225c89e8954095aa06ffbac1c719b..8793b5dbd2b9eb7448c15695e434398560d4948d 100644 (file)
@@ -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