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

Git pushed a commit to branch master
in repository ffmpeg.

commit 494a551355a08759e58160b439baf2f6f7719a82
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Mon Aug 31 17:58:01 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Wed Sep 2 22:36:06 2026 +0200

    avcodec/x86/ac3dsp: Use memory src operand when possible
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/ac3dsp.asm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavcodec/x86/ac3dsp.asm b/libavcodec/x86/ac3dsp.asm
index ce6844ef7a..bacd2434bf 100644
--- a/libavcodec/x86/ac3dsp.asm
+++ b/libavcodec/x86/ac3dsp.asm
@@ -215,10 +215,14 @@ cglobal ac3_extract_exponents, 3, 3, 4, exp, coef, len
     mova      m2, [pd_1]
     mova      m3, [pd_151]
 .loop:
+%if cpuflag(ssse3)
+    pabsd     m0, [coefq+4*lenq]
+%else
     ; move 4 32-bit coefs to xmm0
     mova      m0, [coefq+4*lenq]
     ; absolute value
     PABSD     m0, m1
+%endif
     ; convert to float and extract exponents
     pslld     m0, 1
     por       m0, m2

-- 
To stop receiving notification emails like this one, please contact
[email protected].
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to