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

Git pushed a commit to branch master
in repository ffmpeg.

commit 19652a83a28c8b01be4039e65cd23d95310ec645
Author:     Niklas Haas <[email protected]>
AuthorDate: Tue Apr 21 21:04:08 2026 +0200
Commit:     Niklas Haas <[email protected]>
CommitDate: Tue Jun 9 18:27:20 2026 +0200

    swscale/x86/ops_include: use %assign instead of %xdefine
    
    For numeric 1/0 constants. As an aside, fix the broken comment.
    
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/x86/ops_include.asm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/libswscale/x86/ops_include.asm b/libswscale/x86/ops_include.asm
index c48e17d3cc..4b4ece51c9 100644
--- a/libswscale/x86/ops_include.asm
+++ b/libswscale/x86/ops_include.asm
@@ -173,19 +173,19 @@ endstruc
     %undef ADD_MUL
 %endmacro
 
-; Declare an operation kernel twice, once with V2=0 and once with V2=1
+; Declare a set of operations with the high half enabled / disabled
 %macro decl_v2 2+ ; v2, func
-    %xdefine V2 %1
+    %assign V2 %1
     %2
     %undef V2
 %endmacro
 
 ; Declare an operation kernel specialized to a given subset of active 
components
 %macro decl_pattern 5+ ; X, Y, Z, W, func
-    %xdefine X %1
-    %xdefine Y %2
-    %xdefine Z %3
-    %xdefine W %4
+    %assign X %1
+    %assign Y %2
+    %assign Z %3
+    %assign W %4
     %5
     %undef X
     %undef Y

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

Reply via email to