aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-05-24 08:08:31 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-05-24 08:08:31 +0200
commit001d9d5e9320d95e967c8bebea6cc88acf7f6526 (patch)
treec723c5b59bc3f06d58f37855e5dbb885d07ea193
parentd5802a59f775672dec1f599fe123cb29e5ae533f (diff)
downloadffmpeg-001d9d5e9320d95e967c8bebea6cc88acf7f6526.tar.gz
Fix compilation with --disable-everything.
-rw-r--r--libavcodec/x86/h264_qpel_mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_qpel_mmx.c b/libavcodec/x86/h264_qpel_mmx.c
index 6cc3ac823d..53c840ee4f 100644
--- a/libavcodec/x86/h264_qpel_mmx.c
+++ b/libavcodec/x86/h264_qpel_mmx.c
@@ -1284,6 +1284,6 @@ QPEL16_OP(mc31, MMX)\
QPEL16_OP(mc32, MMX)\
QPEL16_OP(mc33, MMX)
-#if ARCH_X86_32 && HAVE_YASM // ARCH_X86_64 implies sse2+
+#if CONFIG_H264QPEL && ARCH_X86_32 && HAVE_YASM // ARCH_X86_64 implies sse2+
QPEL16(mmxext)
#endif