diff options
author | James Almer <jamrial@gmail.com> | 2023-10-25 09:28:14 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-10-25 09:28:14 -0300 |
commit | 3c5bceb751891ae664319410f5dd8943732c15f0 (patch) | |
tree | 9ac369d98637808d247bfd05222c277ef3ff6a87 /libavformat/options.c | |
parent | a4877f1ec11e0327684eda37b15bc1ccb16f9ace (diff) | |
download | ffmpeg-3c5bceb751891ae664319410f5dd8943732c15f0.tar.gz |
avformat/options: add missing disposition flag to AVStream class options
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/options.c')
-rw-r--r-- | libavformat/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/options.c b/libavformat/options.c index 0f79fe0fa4..1d8c52246b 100644 --- a/libavformat/options.c +++ b/libavformat/options.c @@ -222,6 +222,7 @@ static const AVOption stream_options[] = { { "clean_effects", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CLEAN_EFFECTS }, .unit = "disposition" }, { "attached_pic", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ATTACHED_PIC }, .unit = "disposition" }, { "timed_thumbnails", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_TIMED_THUMBNAILS }, .unit = "disposition" }, + { "non_diegetic", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_NON_DIEGETIC }, .unit = "disposition" }, { "captions", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CAPTIONS }, .unit = "disposition" }, { "descriptions", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DESCRIPTIONS }, .unit = "disposition" }, { "metadata", .type = AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_METADATA }, .unit = "disposition" }, |