This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 5583534fc2022fc021e44544b40c2be737dde3b7 Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 21:19:23 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:07 2026 +0200 swscale/cms: remove no-op const from return type Signed-off-by: Kacper Michajłow <[email protected]> --- libswscale/cms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/cms.c b/libswscale/cms.c index 73448ecebc..c7b196616e 100644 --- a/libswscale/cms.c +++ b/libswscale/cms.c @@ -57,7 +57,7 @@ bool ff_sws_color_map_noop(const SwsColorMap *map) } /* Approximation of gamut hull at a given intensity level */ -static const float hull(float I) +static float hull(float I) { return ((I - 6.0f) * I + 9.0f) * I; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
