This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 7505264b6aa6bec59d70dec068ba68504ac71025 Author: Niklas Haas <[email protected]> AuthorDate: Tue Dec 16 13:59:46 2025 +0100 Commit: Niklas Haas <[email protected]> CommitDate: Sat Dec 20 13:52:45 2025 +0000 swscale/ops: update comment on SWS_COMP_EXACT That the integer is "in-range" is implied by the min/max range tracking, not the flag itself. --- libswscale/ops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/ops.h b/libswscale/ops.h index fe072c1fe7..6392d0ffdf 100644 --- a/libswscale/ops.h +++ b/libswscale/ops.h @@ -71,7 +71,7 @@ typedef enum SwsOpType { enum SwsCompFlags { SWS_COMP_GARBAGE = 1 << 0, /* contents are undefined / garbage data */ - SWS_COMP_EXACT = 1 << 1, /* value is an in-range, exact, integer */ + SWS_COMP_EXACT = 1 << 1, /* value is an exact integer */ SWS_COMP_ZERO = 1 << 2, /* known to be a constant zero */ }; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
