From d22e88d120ebaff40d25a5872b75d69e2ced5a61 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 28 Sep 2014 18:56:54 +0200 Subject: avcodec/x86/fmtconvert: Fix operand size in ff_int32_to_float_fmul_array8_sse* Fixes acodec-dca2 fate failure Signed-off-by: Michael Niedermayer --- libavcodec/x86/fmtconvert.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3