This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 539fc854e74dcaf2e7ffdfe7ec05431c37f226d0 Author: James Almer <[email protected]> AuthorDate: Mon Feb 16 12:03:28 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Sat Mar 14 20:50:27 2026 -0300 fftools/ffmpeg_mux_init: add support for LCEVC Stream Group muxing Signed-off-by: James Almer <[email protected]> --- fftools/ffmpeg_mux_init.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index 7e51ce76ad..e0eecf78f2 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_init.c @@ -2552,6 +2552,8 @@ static int of_map_group(Muxer *mux, AVDictionary **dict, AVBPrint *bp, const cha } break; } + case AV_STREAM_GROUP_PARAMS_LCEVC: + break; default: av_log(mux, AV_LOG_ERROR, "Unsupported mapped group type %d.\n", stg->type); ret = AVERROR(EINVAL); @@ -2574,6 +2576,8 @@ static int of_parse_group_token(Muxer *mux, const char *token, char *ptr) { .i64 = AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT }, .unit = "type" }, { "iamf_mix_presentation", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_STREAM_GROUP_PARAMS_IAMF_MIX_PRESENTATION }, .unit = "type" }, + { "lcevc", NULL, 0, AV_OPT_TYPE_CONST, + { .i64 = AV_STREAM_GROUP_PARAMS_LCEVC }, .unit = "type" }, { NULL }, }; const AVClass class = { @@ -2672,8 +2676,6 @@ static int of_parse_group_token(Muxer *mux, const char *token, char *ptr) ret = of_parse_iamf_submixes(mux, stg, ptr); break; default: - av_log(mux, AV_LOG_FATAL, "Unknown group type %d.\n", type); - ret = AVERROR(EINVAL); break; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
