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

Git pushed a commit to branch master
in repository ffmpeg.

commit eaaf45fd79fb5c8c3685a5e7977a34ad593c7af4
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Wed Jan 7 13:32:29 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Sun Jan 25 22:53:21 2026 +0100

    avcodec/x86/h264_deblock_10bit: Simplify r0+4*r1
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/h264_deblock_10bit.asm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/libavcodec/x86/h264_deblock_10bit.asm 
b/libavcodec/x86/h264_deblock_10bit.asm
index ca5d9ff3b7..7b95754c89 100644
--- a/libavcodec/x86/h264_deblock_10bit.asm
+++ b/libavcodec/x86/h264_deblock_10bit.asm
@@ -600,9 +600,8 @@ cglobal deblock_h_luma_intra_10, 4,7,16,mmsize
     %define p2 m13
     %define p3 m4
     %define spill [rsp]
-    lea     r4, [r1*4]
+    lea     r4, [r0+r1*4] ; pix+4*stride
     lea     r5, [r1*3] ; 3*stride
-    add     r4, r0     ; pix+4*stride
     mov     r6, 2
     mova    m0, [pw_2]
     shl    r2d, 2
@@ -687,9 +686,8 @@ cglobal deblock_v_luma_intra_10, 4,7,8,-3*mmsize
 ;-----------------------------------------------------------------------------
 cglobal deblock_h_luma_intra_10, 4,7,8,-8*mmsize
     LUMA_INTRA_INIT 8
-    lea     r4, [r1*4]
+    lea     r4, [r0+r1*4]
     lea     r5, [r1*3] ; 3*stride
-    add     r4, r0     ; pix+4*stride
     mov     r6, 32/mmsize
     shl    r2d, 2
     shl    r3d, 2

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

Reply via email to