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

Git pushed a commit to branch master
in repository ffmpeg.

commit 046e2bcc2f9772c738dd60b0aef07e4b8e57b546
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Thu Aug 13 15:30:42 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Fri Aug 14 21:21:52 2026 +0200

    avutil/x86/x86util: Remove ABSB{,2} macros
    
    Seem to have always been unused.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavutil/x86/x86util.asm | 24 ------------------------
 1 file changed, 24 deletions(-)

diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm
index 95dbfdb88a..c0fd07c69e 100644
--- a/libavutil/x86/x86util.asm
+++ b/libavutil/x86/x86util.asm
@@ -361,30 +361,6 @@
 %endif
 %endmacro
 
-%macro ABSB 2 ; source mmreg, temp mmreg (unused for SSSE3)
-%if cpuflag(ssse3)
-    pabsb   %1, %1
-%else
-    pxor    %2, %2
-    psubb   %2, %1
-    pminub  %1, %2
-%endif
-%endmacro
-
-%macro ABSB2 4 ; src1, src2, tmp1, tmp2 (tmp1/2 unused for SSSE3)
-%if cpuflag(ssse3)
-    pabsb   %1, %1
-    pabsb   %2, %2
-%else
-    pxor    %3, %3
-    pxor    %4, %4
-    psubb   %3, %1
-    psubb   %4, %2
-    pminub  %1, %3
-    pminub  %2, %4
-%endif
-%endmacro
-
 %macro ABSD2 4
     pxor    %3, %3
     pxor    %4, %4

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

Reply via email to