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 3c517709ff fftools/cmdutils: fix typo in tile_grid usable_only check
3c517709ff is described below
commit 3c517709ffcf5633bea8ee4fae4757b667c46e23
Author: zhanghongyuan <[email protected]>
AuthorDate: Mon Aug 31 13:08:07 2026 +0800
Commit: Zhao Zhili <[email protected]>
CommitDate: Wed Sep 2 07:22:39 2026 +0000
fftools/cmdutils: fix typo in tile_grid usable_only check
The second condition duplicated the nb_tiles check instead of
verifying that offsets is allocated.
Signed-off-by: zhanghongyuan <[email protected]>
---
fftools/cmdutils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 9fdd680448..d9a5901e91 100644
--- a/fftools/cmdutils.c
+++ b/fftools/cmdutils.c
@@ -1398,7 +1398,7 @@ unsigned stream_group_specifier_match(const
StreamSpecifier *ss,
case AV_STREAM_GROUP_PARAMS_TILE_GRID: {
const AVStreamGroupTileGrid *tg = candidate->params.tile_grid;
if (!tg->coded_width || !tg->coded_height || !tg->nb_tiles ||
- !tg->width || !tg->height || !tg->nb_tiles)
+ !tg->width || !tg->height || !tg->offsets)
continue;
break;
}
--
To stop receiving notification emails like this one, please contact
[email protected].
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]