diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-28 18:56:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-28 19:04:06 +0200 |
commit | d22e88d120ebaff40d25a5872b75d69e2ced5a61 (patch) | |
tree | f77e364be49a24757b9c6fb80435f4a7252bcdc7 | |
parent | b28f470df09cc0d339d8b947818db0dfcc9a7f74 (diff) | |
download | ffmpeg-d22e88d120ebaff40d25a5872b75d69e2ced5a61.tar.gz |
avcodec/x86/fmtconvert: Fix operand size in ff_int32_to_float_fmul_array8_sse*
Fixes acodec-dca2 fate failure
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/fmtconvert.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index f42d203b1e..19595f7d00 100644 --- a/libavcodec/x86/fmtconvert.asm +++ b/libavcodec/x86/fmtconvert.asm @@ -83,7 +83,7 @@ INT32_TO_FLOAT_FMUL_SCALAR 3 ;------------------------------------------------------------------------------ %macro INT32_TO_FLOAT_FMUL_ARRAY8 0 cglobal int32_to_float_fmul_array8, 5, 5, 5, c, dst, src, mul, len - shl lenq, 2 + shl lend, 2 add srcq, lenq add dstq, lenq neg lenq |