diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-12-03 22:39:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-03 23:03:13 +0100 |
commit | 49d9cbe55d670ca778422a1d2aed5da5eb15b1e2 (patch) | |
tree | ef6e2cf12510fa9e83ae9324955930aa99d5860d | |
parent | dac9e509020784e8f8c5c332bdbbce7001719400 (diff) | |
download | ffmpeg-49d9cbe55d670ca778422a1d2aed5da5eb15b1e2.tar.gz |
h264_i386: Fix operand size
Fixes fate failure on macosx clang x86-64
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/h264_i386.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/h264_i386.h b/libavcodec/x86/h264_i386.h index dcba42d3ed..49ad0e0fa0 100644 --- a/libavcodec/x86/h264_i386.h +++ b/libavcodec/x86/h264_i386.h @@ -178,7 +178,7 @@ static int decode_significance_8x8_x86(CABACContext *c, "mov %2, %0 \n\t" "mov %1, %6 \n\t" - "mov %6, (%0) \n\t" + "mov %k6, (%0) \n\t" "test $1, %4 \n\t" " jnz 5f \n\t" @@ -191,7 +191,7 @@ static int decode_significance_8x8_x86(CABACContext *c, "cmp $63, %6 \n\t" " jb 3b \n\t" "mov %2, %0 \n\t" - "mov %6, (%0) \n\t" + "mov %k6, (%0) \n\t" "5: \n\t" "addl %8, %k0 \n\t" "shr $2, %k0 \n\t" |