aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-12-12 15:23:39 -0300
committerJames Almer <jamrial@gmail.com>2023-12-12 15:24:08 -0300
commit34d56e17667c48bcfc4fec5f726116ef1572dad1 (patch)
treecf6d6c1a01ac768ae26da2b7a46e4b8d653aaa13
parent96f646cdc22490020b4b5a7d5ac00a20379f9faa (diff)
downloadffmpeg-34d56e17667c48bcfc4fec5f726116ef1572dad1.tar.gz
x86/aacencdsp: clear the high bits for size in ff_abs_pow34_sse
Fixes checkasm failures on win64. Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavcodec/x86/aacencdsp.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/aacencdsp.asm b/libavcodec/x86/aacencdsp.asm
index 97af571ec8..0d3ba4b89d 100644
--- a/libavcodec/x86/aacencdsp.asm
+++ b/libavcodec/x86/aacencdsp.asm
@@ -34,7 +34,7 @@ SECTION .text
INIT_XMM sse
cglobal abs_pow34, 3, 3, 3, out, in, size
mova m2, [float_abs_mask]
- shl sizeq, 2
+ shl sized, 2
add inq, sizeq
add outq, sizeq
neg sizeq