This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit d2495911cce6b2cd0867ceaf617d87f6ab645f4a
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Thu Aug 13 16:02:59 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Fri Aug 14 21:21:52 2026 +0200

    avcodec/x86/ac3dsp: Avoid using PMINUB macro
    
    Forgotten in fd98594a8831ce037a495b6d7e090bd8f81e83a1.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/ac3dsp.asm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/x86/ac3dsp.asm b/libavcodec/x86/ac3dsp.asm
index 21f59708b7..5b16af99c5 100644
--- a/libavcodec/x86/ac3dsp.asm
+++ b/libavcodec/x86/ac3dsp.asm
@@ -42,7 +42,7 @@ SECTION .text
 ;-----------------------------------------------------------------------------
 
 %macro AC3_EXPONENT_MIN 0
-cglobal ac3_exponent_min, 3, 4, 2, exp, reuse_blks, expn, offset
+cglobal ac3_exponent_min, 3, 4, 1, exp, reuse_blks, expn, offset
     shl  reuse_blksd, 8
     jz .end
     LOOP_ALIGN
@@ -52,7 +52,7 @@ cglobal ac3_exponent_min, 3, 4, 2, exp, reuse_blks, expn, 
offset
     sub      offsetq, 256
     LOOP_ALIGN
 .nextblk:
-    PMINUB        m0, [expq+offsetq], m1
+    pminub        m0, [expq+offsetq]
     sub      offsetq, 256
     jae .nextblk
     mova      [expq], m0

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to