This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a757b708ae7d43fdec89545a55cbc11ae2967b19 Author: Nicolas George <[email protected]> AuthorDate: Sat Apr 25 19:58:54 2026 +0200 Commit: Nicolas George <[email protected]> CommitDate: Mon Jul 27 10:27:27 2026 +0200 lavfi: cosmetic: rename variable --- libavfilter/formats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index da5b7abbb8..2076beda0d 100644 --- a/libavfilter/formats.c +++ b/libavfilter/formats.c @@ -733,8 +733,8 @@ AVFilterFormats *ff_alpha_mode_straight(void) AVFilterFormats *ff_all_alpha_modes(void) { AVFilterFormats *ret = NULL; - for (int range = 0; range < AVALPHA_MODE_NB; range++) { - if (ff_add_format(&ret, range) < 0) + for (int am = 0; am < AVALPHA_MODE_NB; am++) { + if (ff_add_format(&ret, am) < 0) return NULL; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
