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

Git pushed a commit to branch master
in repository ffmpeg.

commit 56a4c15c23b5fd8a1c599c1106cf3b6e5efa5e9c
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Sat Feb 28 18:32:30 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Fri Mar 6 20:02:41 2026 +0100

    avcodec/x86/vvc/alf: Avoid checking twice
    
    Also avoid doing unnecessary work in the width==8 case.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/vvc/alf.asm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavcodec/x86/vvc/alf.asm b/libavcodec/x86/vvc/alf.asm
index 38fa04a19e..ed83134cd4 100644
--- a/libavcodec/x86/vvc/alf.asm
+++ b/libavcodec/x86/vvc/alf.asm
@@ -353,13 +353,12 @@ SECTION .text
     cmp %3, 8
     jl .w4
     STORE_PIXELS_W8 %1, %2
-    cmp %3, 12
+    je .end
     %if ps == 2
         vpermq      m%2,  m%2, q0302
     %else
         vpermq      m%2,  m%2, q0101
     %endif
-    jl .end
     STORE_PIXELS_W4 %1, %2, 8
     jmp .end
 .w4:

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

Reply via email to