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

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 3921b435fc avcodec/x86/h264_intrapred: cosmetic fix
3921b435fc is described below

commit 3921b435fc7b6447ef2081e794da6e8b7035ee72
Author:     Zuxy Meng <[email protected]>
AuthorDate: Wed Apr 22 18:42:33 2026 -0700
Commit:     Zuxy Meng <[email protected]>
CommitDate: Mon May 25 12:18:09 2026 -0700

    avcodec/x86/h264_intrapred: cosmetic fix
    
    Mark needed xmm regs for pred8x8_top_dc_8; fix indentation for pred8x8_dc_8.
    
    Signed-off-by: Zuxy Meng <[email protected]>
---
 libavcodec/x86/h264_intrapred.asm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/libavcodec/x86/h264_intrapred.asm 
b/libavcodec/x86/h264_intrapred.asm
index 1cc0dd7f8f..1074b474f0 100644
--- a/libavcodec/x86/h264_intrapred.asm
+++ b/libavcodec/x86/h264_intrapred.asm
@@ -609,7 +609,7 @@ PRED8x8_H
 ; void ff_pred8x8_top_dc_8_sse2(uint8_t *src, ptrdiff_t stride)
 ;-----------------------------------------------------------------------------
 INIT_XMM sse2
-cglobal pred8x8_top_dc_8, 2,5
+cglobal pred8x8_top_dc_8, 2,5,2
     sub         r0, r1
     movq      xmm0, [r0]
     pxor      xmm1, xmm1
@@ -682,10 +682,10 @@ cglobal pred8x8_dc_8, 2,5,5
     packuswb  m0, m0
     punpcklbw m0, m0
     punpcklwd m0, m0
-    movq [r0+r1*1], m0
-    movq [r0+r1*2], m0
-    movq [r2+r1*1], m0
-    movq [r2+r1*2], m0
+    movq   [r0+r1*1], m0
+    movq   [r0+r1*2], m0
+    movq   [r2+r1*1], m0
+    movq   [r2+r1*2], m0
     movhps [r3+r1*1], m0
     movhps [r3+r1*2], m0
     movhps [r4+r1*1], m0

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

Reply via email to