From 001d9d5e9320d95e967c8bebea6cc88acf7f6526 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 24 May 2012 08:08:31 +0200 Subject: [PATCH] Fix compilation with --disable-everything. --- libavcodec/x86/h264_qpel_mmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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