Browse Source

x86: h264qpel: Only define mmxext QPEL functions if H264QPEL is enabled

This fixes compilation with --disable-everything and components enabled.
tags/n1.1
Diego Biurrun 13 years ago
parent
commit
930e26a3ea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/h264_qpel.c

+ 1
- 1
libavcodec/x86/h264_qpel.c View File

@@ -1286,6 +1286,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 ARCH_X86_32 && HAVE_YASM && CONFIG_H264QPEL // ARCH_X86_64 implies SSE2+
QPEL16(mmxext)
#endif

Loading…
Cancel
Save