1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avutil/x86/aes: ignore the upper bits in count

The argument is an int.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2025-04-06 11:00:01 -03:00
parent 3f30ae823e
commit a35b4e8d29

View File

@ -28,7 +28,7 @@ SECTION .text
;----------------------------------------------------------------------------- ;-----------------------------------------------------------------------------
%macro AES_CRYPT 1 %macro AES_CRYPT 1
cglobal aes_%1rypt, 6,6,2 cglobal aes_%1rypt, 6,6,2
test r3, r3 test r3d, r3d
je .ret je .ret
shl r3d, 4 shl r3d, 4
add r5d, r5d add r5d, r5d