diff options
author | Matthew Heaney <matthewjheaney@google.com> | 2013-08-08 15:40:03 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-19 22:34:57 +0200 |
commit | 818ebe930fa426ac73368f8aaccf4782fcbf3f92 (patch) | |
tree | acbc90b829843686dadf9b5434f96973fbdf3436 /libavformat/matroska.h | |
parent | 23b3141261b7ffed5f512eebbd8d82001ebf8523 (diff) | |
download | ffmpeg-818ebe930fa426ac73368f8aaccf4782fcbf3f92.tar.gz |
avformat/matroskadec: add WebVTT support
WebM files now support inband text tracks, as described in the
following specification:
http://wiki.webmproject.org/webm-metadata/temporal-metadata/webvtt-in-webm
The Matroska demuxer now detects the presence of WebVTT tracks,
synthesizing WebVTT packets (having codec id AV_CODEC_ID_WEBVTT) and
pushing them downstream in the normal way.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/matroska.h')
-rw-r--r-- | libavformat/matroska.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroska.h b/libavformat/matroska.h index 9c8071adaf..7cf423c502 100644 --- a/libavformat/matroska.h +++ b/libavformat/matroska.h @@ -265,7 +265,7 @@ typedef enum { */ typedef struct CodecTags{ - char str[20]; + char str[22]; enum AVCodecID id; }CodecTags; |