diff options
author | Matthew Heaney <matthewjheaney@google.com> | 2013-06-24 11:18:05 -0700 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-06-25 00:13:47 +0200 |
commit | bc35df29c123f695abe60c13539dbf112b465d07 (patch) | |
tree | a11cf310fae20addc9eb1ca2c5052be9b06bb3cb /libavformat/avformat.h | |
parent | 61c82214afacf6866952925ced6fbf19ce86cf49 (diff) | |
download | ffmpeg-bc35df29c123f695abe60c13539dbf112b465d07.tar.gz |
lavf: add AV_DISPOSITION flags for WebVTT text track kinds
There are 4 separate WebVTT text track kinds: subtitles (the default
if not otherwise specified), captions, descriptions, and metadata.
The WebM muxer needs to know which WebVTT text track kind this is, in
order to synthesize the correct track type and codec id.
To allow a demuxer to indicate the text track kind of the input, a new
set of AV_DISPOSITION flag values has been added, corresponding to
each of the non-default text track kind values.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 1d7ba45b32..bd911ecfda 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -636,6 +636,13 @@ typedef struct AVIndexEntry { #define AV_DISPOSITION_ATTACHED_PIC 0x0400 /** + * To specify text track kind (different from subtitles default). + */ +#define AV_DISPOSITION_CAPTIONS 0x10000 +#define AV_DISPOSITION_DESCRIPTIONS 0x20000 +#define AV_DISPOSITION_METADATA 0x40000 + +/** * Options for behavior on timestamp wrap detection. */ #define AV_PTS_WRAP_IGNORE 0 ///< ignore the wrap |