This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new 4acfab044d checkasm/sw_ops: fix typo in write operations
4acfab044d is described below
commit 4acfab044df8b7644d0db16fec56382f8fdae98c
Author: Zhao Zhili <[email protected]>
AuthorDate: Mon Jun 15 17:00:05 2026 +0800
Commit: Niklas Haas <[email protected]>
CommitDate: Mon Jun 15 14:36:05 2026 +0000
checkasm/sw_ops: fix typo in write operations
check_write() matched against SWS_UOP_READ_PACKED/PLANAR, copied from
check_read(), instead of SWS_UOP_WRITE_PACKED/PLANAR.
---
tests/checkasm/sw_ops.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/checkasm/sw_ops.c b/tests/checkasm/sw_ops.c
index 99140ced52..7e30b70ca7 100644
--- a/tests/checkasm/sw_ops.c
+++ b/tests/checkasm/sw_ops.c
@@ -431,8 +431,8 @@ static void check_write(const char *name, const SwsUOp *uop)
switch (uop->uop) {
case SWS_UOP_WRITE_BIT:
case SWS_UOP_WRITE_NIBBLE:
- case SWS_UOP_READ_PACKED: mode = SWS_RW_PACKED; break;
- case SWS_UOP_READ_PLANAR: mode = SWS_RW_PLANAR; break;
+ case SWS_UOP_WRITE_PACKED: mode = SWS_RW_PACKED; break;
+ case SWS_UOP_WRITE_PLANAR: mode = SWS_RW_PLANAR; break;
default: return;
}
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]