[FFmpeg-cvslog] x86/aacencdsp: clear the high bits for size in ff_abs_pow34_sse

James Almer git at videolan.org
Tue Dec 12 20:24:34 EET 2023


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Dec 12 15:23:39 2023 -0300| [34d56e17667c48bcfc4fec5f726116ef1572dad1] | committer: James Almer

x86/aacencdsp: clear the high bits for size in ff_abs_pow34_sse

Fixes checkasm failures on win64.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=34d56e17667c48bcfc4fec5f726116ef1572dad1
---

 libavcodec/x86/aacencdsp.asm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the ffmpeg-cvslog mailing list