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

Git pushed a commit to branch master
in repository ffmpeg.

commit 9317fb2b2ed2e7b7718f99f3521997425134a78d
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Tue Feb 17 19:10:18 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Sun Feb 22 00:57:56 2026 +0100

    avcodec/x86/vvc/mc: Avoid ymm registers where possible
    
    Widths 2 and 4 fit into xmm registers.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/vvc/mc.asm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/x86/vvc/mc.asm b/libavcodec/x86/vvc/mc.asm
index 4fb5a19761..640e7d1d12 100644
--- a/libavcodec/x86/vvc/mc.asm
+++ b/libavcodec/x86/vvc/mc.asm
@@ -79,6 +79,7 @@ SECTION .text
 %macro AVG_FN 2 ; bpc, op
    jmp                  wq
 
+INIT_XMM cpuname
 .w2:
     movd                xm0, [src0q]
     pinsrd              xm0, [src0q + AVG_SRC_STRIDE], 1
@@ -98,6 +99,7 @@ SECTION .text
 
     AVG_LOOP_END        .w4
 
+INIT_YMM cpuname
 .w8:
     movu               xm0, [src0q]
     movu               xm1, [src1q]

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

Reply via email to