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

Git pushed a commit to branch master
in repository ffmpeg.

commit f5c5bca8033d6ba3efaed77e901bec1dcbe81fc6
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Fri Apr 10 01:37:32 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Mon Apr 13 08:46:44 2026 +0200

    swscale/x86/scale: Remove always-false mmsize checks
    
    Forgotten in a05f22eaf393177b94432431c145cbc5ba10390a.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libswscale/x86/scale.asm | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/libswscale/x86/scale.asm b/libswscale/x86/scale.asm
index 85a96dc57e..5d4553cf49 100644
--- a/libswscale/x86/scale.asm
+++ b/libswscale/x86/scale.asm
@@ -103,9 +103,6 @@ cglobal hscale%1to%2_%4, %5, 10, %6, pos0, dst, w, srcmem, 
filter, fltpos, fltsi
     mov32      pos0q, dword [fltposq+wq*4+ 0]   ; filterPos[0]
     mov32      pos1q, dword [fltposq+wq*4+ 4]   ; filterPos[1]
     movlh         m0, [srcq+pos0q*srcmul]       ; src[filterPos[0] + {0,1,2,3}]
-%if mmsize == 8
-    movlh         m1, [srcq+pos1q*srcmul]       ; src[filterPos[1] + {0,1,2,3}]
-%else ; mmsize == 16
 %if %1 > 8
     movhps        m0, [srcq+pos1q*srcmul]       ; src[filterPos[1] + {0,1,2,3}]
 %else ; %1 == 8
@@ -121,7 +118,6 @@ cglobal hscale%1to%2_%4, %5, 10, %6, pos0, dst, w, srcmem, 
filter, fltpos, fltsi
     punpckldq     m0, m4
     punpckldq     m1, m5
 %endif ; %1 == 8
-%endif ; mmsize == 8/16
 %if %1 == 8
     punpcklbw     m0, m3                        ; byte -> word
     punpcklbw     m1, m3                        ; byte -> word
@@ -153,17 +149,11 @@ cglobal hscale%1to%2_%4, %5, 10, %6, pos0, dst, w, 
srcmem, filter, fltpos, fltsi
     mov32      pos0q, dword [fltposq+wq*2+0]    ; filterPos[0]
     mov32      pos1q, dword [fltposq+wq*2+4]    ; filterPos[1]
     movbh         m0, [srcq+ pos0q   *srcmul]   ; src[filterPos[0] + 
{0,1,2,3,4,5,6,7}]
-%if mmsize == 8
-    movbh         m1, [srcq+(pos0q+4)*srcmul]   ; src[filterPos[0] + {4,5,6,7}]
-    movbh         m4, [srcq+ pos1q   *srcmul]   ; src[filterPos[1] + {0,1,2,3}]
-    movbh         m5, [srcq+(pos1q+4)*srcmul]   ; src[filterPos[1] + {4,5,6,7}]
-%else ; mmsize == 16
     movbh         m1, [srcq+ pos1q   *srcmul]   ; src[filterPos[1] + 
{0,1,2,3,4,5,6,7}]
     mov32      pos0q, dword [fltposq+wq*2+8]    ; filterPos[2]
     mov32      pos1q, dword [fltposq+wq*2+12]   ; filterPos[3]
     movbh         m4, [srcq+ pos0q   *srcmul]   ; src[filterPos[2] + 
{0,1,2,3,4,5,6,7}]
     movbh         m5, [srcq+ pos1q   *srcmul]   ; src[filterPos[3] + 
{0,1,2,3,4,5,6,7}]
-%endif ; mmsize == 8/16
 %if %1 == 8
     punpcklbw     m0, m3                        ; byte -> word
     punpcklbw     m1, m3                        ; byte -> word

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

Reply via email to