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

Git pushed a commit to branch master
in repository ffmpeg.

commit 086029215702b95e980898c4e981fe79d2122ce1
Author:     Ramiro Polla <[email protected]>
AuthorDate: Fri Jul 17 23:10:13 2026 +0200
Commit:     Ramiro Polla <[email protected]>
CommitDate: Sun Jul 19 15:07:02 2026 +0200

    swscale/aarch64/ops: consistently use SWS_COMP() to test and set mask values
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Ramiro Polla <[email protected]>
---
 libswscale/aarch64/ops_impl_conv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libswscale/aarch64/ops_impl_conv.c 
b/libswscale/aarch64/ops_impl_conv.c
index 638c1d63ba..20b9f41fad 100644
--- a/libswscale/aarch64/ops_impl_conv.c
+++ b/libswscale/aarch64/ops_impl_conv.c
@@ -186,7 +186,7 @@ static int convert_to_aarch64_impl(SwsContext *ctx, const 
SwsOpList *ops, int n,
     case AARCH64_SWS_OP_CLEAR:
         out->mask = 0;
         for (int i = 0; i < 4; i++) {
-            if (SWS_COMP_TEST(op->clear.mask, i))
+            if (op->clear.mask & SWS_COMP(i))
                 MASK_SET(out->mask, i, 1);
         }
         break;

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

Reply via email to