Module: libav Branch: master Commit: 567a32b5b26dcc9c27e2c5ecb9c6c60d65b0e78d
Author: Daniel Kang <[email protected]> Committer: Ronald S. Bultje <[email protected]> Date: Mon Jul 4 11:44:59 2011 -0400 x86_32: Fix build on x86_32 with --disable-yasm. Signed-off-by: Ronald S. Bultje <[email protected]> --- libavcodec/x86/h264_qpel_mmx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/x86/h264_qpel_mmx.c b/libavcodec/x86/h264_qpel_mmx.c index c313c0e..91ba39f 100644 --- a/libavcodec/x86/h264_qpel_mmx.c +++ b/libavcodec/x86/h264_qpel_mmx.c @@ -1294,6 +1294,6 @@ QPEL16_OP(mc31, MMX)\ QPEL16_OP(mc32, MMX)\ QPEL16_OP(mc33, MMX) -#if ARCH_X86_32 // ARCH_X86_64 implies sse2+ +#if ARCH_X86_32 && HAVE_YASM // ARCH_X86_64 implies sse2+ QPEL16(mmxext) #endif _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
