aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorİsmail Dönmez <ismail@namtrac.org>2010-11-01 19:35:51 +0000
committerMartin Storsjö <martin@martin.st>2010-11-01 19:35:51 +0000
commit80e33d2451daabe631de95b19a4085e864b9aeb2 (patch)
treef069eee8f402a4d26df4bce94b953a34a2b28731
parent3699c1f1df882e4b3f6f1aecf65d0db352343cf1 (diff)
downloadffmpeg-80e33d2451daabe631de95b19a4085e864b9aeb2.tar.gz
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 Originally committed as revision 25628 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/x86/dsputil_mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c
index 5dac6da8de..db1e6e38a0 100644
--- a/libavcodec/x86/dsputil_mmx.c
+++ b/libavcodec/x86/dsputil_mmx.c
@@ -612,7 +612,7 @@ static void add_hfyu_median_prediction_cmov(uint8_t *dst, const uint8_t *top, co
__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"