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 | |
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>
-rw-r--r-- | libavformat/options.c | 1 | ||||
-rw-r--r-- | libavformat/version.h | 2 |
2 files changed, 2 insertions, 1 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" }, diff --git a/libavformat/version.h b/libavformat/version.h index eaf74946de..e6fbdfafc5 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -32,7 +32,7 @@ #include "version_major.h" #define LIBAVFORMAT_VERSION_MINOR 15 -#define LIBAVFORMAT_VERSION_MICRO 100 +#define LIBAVFORMAT_VERSION_MICRO 101 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |