ffmpeg: add support for muxing AVStreamGroups

Starting with IAMF support.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2023-11-25 11:39:42 -03:00
parent 556b596d1d
commit ed670b9b98
4 changed files with 546 additions and 0 deletions

View File

@@ -1498,6 +1498,8 @@ const OptionDef options[] = {
"add metadata", "string=string" },
{ "program", HAS_ARG | OPT_STRING | OPT_SPEC | OPT_OUTPUT, { .off = OFFSET(program) },
"add program with specified streams", "title=string:st=number..." },
{ "stream_group", HAS_ARG | OPT_STRING | OPT_SPEC | OPT_OUTPUT, { .off = OFFSET(stream_groups) },
"add stream group with specified streams and group type-specific arguments", "id=number:st=number..." },
{ "dframes", HAS_ARG | OPT_PERFILE | OPT_EXPERT |
OPT_OUTPUT, { .func_arg = opt_data_frames },
"set the number of data frames to output", "number" },