[FFmpeg-cvslog] r25628 - trunk/libavcodec/x86/dsputil_mmx.c
mstorsjo
subversion
Mon Nov 1 20:35:51 CET 2010
Author: mstorsjo
Date: Mon Nov 1 20:35:51 2010
New Revision: 25628
Log:
dsputil: Use explicit movzbl instead of movzx
This fixes compilation with the latest clang trunk version.
Patch by ?smail D?nmez, ismail at namtrac dot org
Modified:
trunk/libavcodec/x86/dsputil_mmx.c
Modified: trunk/libavcodec/x86/dsputil_mmx.c
==============================================================================
--- trunk/libavcodec/x86/dsputil_mmx.c Mon Nov 1 11:33:10 2010 (r25627)
+++ trunk/libavcodec/x86/dsputil_mmx.c Mon Nov 1 20:35:51 2010 (r25628)
@@ -612,7 +612,7 @@ static void add_hfyu_median_prediction_c
__asm__ volatile(
"mov %7, %3 \n"
"1: \n"
- "movzx (%3,%4), %2 \n"
+ "movzbl (%3,%4), %2 \n"
"mov %2, %k3 \n"
"sub %b1, %b3 \n"
"add %b0, %b3 \n"
More information about the ffmpeg-cvslog
mailing list