diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:41:26 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-04-04 19:08:05 +0200 |
commit | c2c5be57494e6117086771bca34c8cd4c72c8e99 (patch) | |
tree | 4f18760e2f49e2cfaab150301a244dfe0d231e4e /libavcodec/x86/h264_qpel.c | |
parent | 01c5779f56cf708e6cb88b11cfdc248cae7e2ee8 (diff) | |
download | ffmpeg-c2c5be57494e6117086771bca34c8cd4c72c8e99.tar.gz |
x86: h264_qpel: Simplify an #if conditional
The extra conditions are covered by previous #ifs and conditional compilation.
Diffstat (limited to 'libavcodec/x86/h264_qpel.c')
-rw-r--r-- | libavcodec/x86/h264_qpel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_qpel.c b/libavcodec/x86/h264_qpel.c index b285c1fecf..8793b5dbd2 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 |