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

Git pushed a commit to branch master
in repository ffmpeg.

commit f0fc529cbe5c918553dd210999b140efd6632a46
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Thu Jul 30 16:21:12 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Sun Aug 2 18:36:52 2026 +0200

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

diff --git a/libavcodec/x86/lossless_videodsp.asm 
b/libavcodec/x86/lossless_videodsp.asm
index 833b581744..5815c8e5ae 100644
--- a/libavcodec/x86/lossless_videodsp.asm
+++ b/libavcodec/x86/lossless_videodsp.asm
@@ -280,10 +280,10 @@ cglobal add_gradient_pred, 3,3,4, src, stride, width
     mova         xm0, [pb_15]
 
 ;load src - 1 in xm1
-    movd         xm1, [srcq-1]
 %if cpuflag(avx2)
-    vpbroadcastb xm1, xm1
+    vpbroadcastb xm1, [srcq-1]
 %else
+    movd         xm1, [srcq-1]
     pxor         xm2, xm2
     pshufb       xm1, xm2
 %endif

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

Reply via email to