[FFmpeg-cvslog] avutil/x86/aes: ignore the upper bits in count
James Almer
git at videolan.org
Sun Apr 6 17:03:03 EEST 2025
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Apr 6 11:00:01 2025 -0300| [a35b4e8d290eeada04773038b8dc3c7a13e8f7dc] | committer: James Almer
avutil/x86/aes: ignore the upper bits in count
The argument is an int.
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a35b4e8d290eeada04773038b8dc3c7a13e8f7dc
---
libavutil/x86/aes.asm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/x86/aes.asm b/libavutil/x86/aes.asm
index 197d00b840..7084c46055 100644
--- a/libavutil/x86/aes.asm
+++ b/libavutil/x86/aes.asm
@@ -28,7 +28,7 @@ SECTION .text
;-----------------------------------------------------------------------------
%macro AES_CRYPT 1
cglobal aes_%1rypt, 6,6,2
- test r3, r3
+ test r3d, r3d
je .ret
shl r3d, 4
add r5d, r5d
More information about the ffmpeg-cvslog
mailing list