diff options
author | İsmail Dönmez <ismail@namtrac.org> | 2010-11-01 19:35:51 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-11-01 19:35:51 +0000 |
commit | 80e33d2451daabe631de95b19a4085e864b9aeb2 (patch) | |
tree | f069eee8f402a4d26df4bce94b953a34a2b28731 /libavcodec | |
parent | 3699c1f1df882e4b3f6f1aecf65d0db352343cf1 (diff) | |
download | ffmpeg-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
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 2 |
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" |