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

Git pushed a commit to branch master
in repository ffmpeg.

commit a22149ab3d2f7e9e66ae0b82f8fc0861eec7d98b
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Wed Jan 7 09:05:04 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Sun Jan 25 22:53:21 2026 +0100

    avcodec/x86/h264_deblock: Remove always-false branches
    
    These functions are always called with alpha and beta > 0.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/h264_deblock.asm | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/libavcodec/x86/h264_deblock.asm b/libavcodec/x86/h264_deblock.asm
index 98a0867102..075a6325e1 100644
--- a/libavcodec/x86/h264_deblock.asm
+++ b/libavcodec/x86/h264_deblock.asm
@@ -699,10 +699,8 @@ cglobal deblock_%1_luma_intra_8, 
4,6,16,ARCH_X86_64*0x50-0x50
     lea     r4, [r1*4]
     lea     r5, [r1*3] ; 3*stride
     dec     r2d        ; alpha-1
-    jl .end
     neg     r4
     dec     r3d        ; beta-1
-    jl .end
     add     r4, r0     ; pix-4*stride
     mova    p1, [r4+2*r1]
     mova    p0, [r4+r5]
@@ -743,7 +741,6 @@ cglobal deblock_%1_luma_intra_8, 
4,6,16,ARCH_X86_64*0x50-0x50
     LUMA_INTRA_P012 [r4+r5], [r4+2*r1], [r4+r1], [r4]
     LUMA_INTRA_SWAP_PQ
     LUMA_INTRA_P012 [r0], [r0+r1], [r0+2*r1], [r0+r5]
-.end:
     RET
 
 INIT_MMX cpuname

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

Reply via email to