This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 2dfde1531d0bfc1eeab33cbdf77a457f4c7572ec Author: Niklas Haas <[email protected]> AuthorDate: Wed Feb 4 19:33:50 2026 +0100 Commit: Niklas Haas <[email protected]> CommitDate: Thu Feb 19 19:44:46 2026 +0000 swscale/ops: reset comp flags on SWS_OP_CLEAR Even if we clear to a non-integer value. Sponsored-by: Sovereign Tech Fund Signed-off-by: Niklas Haas <[email protected]> --- libswscale/ops.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libswscale/ops.c b/libswscale/ops.c index caba6b85e3..556c11467b 100644 --- a/libswscale/ops.c +++ b/libswscale/ops.c @@ -306,11 +306,11 @@ void ff_sws_op_list_update_comps(SwsOpList *ops) case SWS_OP_CLEAR: for (int i = 0; i < 4; i++) { if (op->c.q4[i].den) { - if (op->c.q4[i].num == 0) { - op->comps.flags[i] = SWS_COMP_ZERO | SWS_COMP_EXACT; - } else if (op->c.q4[i].den == 1) { - op->comps.flags[i] = SWS_COMP_EXACT; - } + op->comps.flags[i] = 0; + if (op->c.q4[i].num == 0) + op->comps.flags[i] |= SWS_COMP_ZERO; + if (op->c.q4[i].den == 1) + op->comps.flags[i] |= SWS_COMP_EXACT; } else { op->comps.flags[i] = prev.flags[i]; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
