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

Git pushed a commit to branch master
in repository ffmpeg.

commit 8fe3e3f12b9a93e24c672b61b222862f4eaf33f4
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Mon Aug 31 17:46:32 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Wed Sep 2 22:34:38 2026 +0200

    avcodec/x86/ac3dsp: Use movq instead of movlpd
    
    Avoids a dependency on dst.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/ac3dsp.asm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/libavcodec/x86/ac3dsp.asm b/libavcodec/x86/ac3dsp.asm
index 51874bc5f5..54e9a9a300 100644
--- a/libavcodec/x86/ac3dsp.asm
+++ b/libavcodec/x86/ac3dsp.asm
@@ -170,10 +170,10 @@ cglobal ac3_compute_mantissa_size, 1, 1, 5, mant_cnt
     movdqa      m4, [pw_bap_mul1]
     paddw       m0, [mant_cntq+ 2*16]
     paddw       m1, [mant_cntq+ 3*16]
-    movhpd      m2, [mant_cntq     +2]
+    movq        m2, [mant_cntq     +2]
     paddw       m0, [mant_cntq+ 4*16]
     paddw       m1, [mant_cntq+ 5*16]
-    movlpd      m2, [mant_cntq+1*32+2]
+    movhps      m2, [mant_cntq+1*32+2]
     paddw       m0, [mant_cntq+ 6*16]
     paddw       m1, [mant_cntq+ 7*16]
     paddw       m0, [mant_cntq+ 8*16]
@@ -184,10 +184,10 @@ cglobal ac3_compute_mantissa_size, 1, 1, 5, mant_cnt
     pmaddwd     m0, [ac3_bap_bits   ]
     pmaddwd     m1, [ac3_bap_bits+16]
     paddd       m0, m1
-    movhpd      m1, [mant_cntq+2*32+2]
-    movlpd      m1, [mant_cntq+3*32+2]
-    movhpd      m3, [mant_cntq+4*32+2]
-    movlpd      m3, [mant_cntq+5*32+2]
+    movq        m1, [mant_cntq+2*32+2]
+    movhps      m1, [mant_cntq+3*32+2]
+    movq        m3, [mant_cntq+4*32+2]
+    movhps      m3, [mant_cntq+5*32+2]
     pmulhuw     m1, m4
     pmulhuw     m3, m4
     paddusw     m1, 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