This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 9f9db1f673183a5f50a3bab928da6978bcf0257e Author: James Almer <[email protected]> AuthorDate: Mon Feb 16 12:03:04 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Sat Mar 14 20:50:27 2026 -0300 avformat/options: add missing AVOption for AVStreamGroupLCEVC Signed-off-by: James Almer <[email protected]> --- libavformat/options.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/options.c b/libavformat/options.c index d08013bfd4..72a6a5a43e 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -351,6 +351,8 @@ static const AVClass tile_grid_class = { #define OFFSET(x) offsetof(AVStreamGroupLCEVC, x) static const AVOption lcevc_options[] = { + { "lcevc_index", "Index of the LCEVC stream within the group", OFFSET(lcevc_index), + AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS }, { "video_size", "size of video after LCEVC enhancement has been applied", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, { .str = NULL }, 0, INT_MAX, FLAGS }, { NULL }, _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
