The branch, master has been updated
via a0e00bed88cc06b109e446a8f79833b595dba03a (commit)
from ef856ef93ef6c449f546c10f86c820d4dafe2fdc (commit)
- Log -----------------------------------------------------------------
commit a0e00bed88cc06b109e446a8f79833b595dba03a
Author: Zhao Zhili <[email protected]>
AuthorDate: Tue Sep 2 12:07:32 2025 +0800
Commit: Zhao Zhili <[email protected]>
CommitDate: Tue Sep 2 10:28:56 2025 +0000
swscale/ops: fix build with msvc
x86/ops.c(500): error C2099: initializer is not a constant
diff --git a/libswscale/x86/ops.c b/libswscale/x86/ops.c
index 836c5f0d13..b3fe5fb014 100644
--- a/libswscale/x86/ops.c
+++ b/libswscale/x86/ops.c
@@ -130,7 +130,7 @@ static int setup_clear(const SwsOp *op, SwsOpPriv *out)
#define DECL_SWIZZLE(EXT, X, Y, Z, W)
\
DECL_ASM(U8, swizzle_##X##Y##Z##W##EXT,
\
.op = SWS_OP_SWIZZLE,
\
- .swizzle = SWS_SWIZZLE( X, Y, Z, W ),
\
+ .swizzle.in = {X, Y, Z, W},
\
);
#define DECL_CONVERT(EXT, FROM, TO)
\
-----------------------------------------------------------------------
Summary of changes:
libswscale/x86/ops.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]