From 9f9db1f673183a5f50a3bab928da6978bcf0257e Mon Sep 17 00:00:00 2001 From: James Almer Date: Mon, 16 Feb 2026 12:03:04 -0300 Subject: [PATCH] avformat/options: add missing AVOption for AVStreamGroupLCEVC Signed-off-by: James Almer --- 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 },