diff options
author | wm4 <wm4@nowhere> | 2016-06-14 16:43:07 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-06-14 16:43:07 +0200 |
commit | a30e7272669478ca1a04469c0ab3614b0e99dd98 (patch) | |
tree | 1be3c825290198bc535f2ee768ad630e5cd3ee4e | |
parent | 788929e4e07e00325cc1b2f58569db9de1ba47fb (diff) |
demux_mkv: support Matroska webvtt
They're different from the Google/WebM subtitle types, and use a new
codec ID.
Fixes #3247.
-rw-r--r-- | demux/demux_mkv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/demux_mkv.c b/demux/demux_mkv.c index a77b2501b3..f454f5fd20 100644 --- a/demux/demux_mkv.c +++ b/demux/demux_mkv.c @@ -1720,6 +1720,7 @@ static const char *const mkv_sub_tag[][2] = { { "S_HDMV/PGS", "hdmv_pgs_subtitle"}, { "D_WEBVTT/SUBTITLES", "webvtt-webm"}, { "D_WEBVTT/CAPTIONS", "webvtt-webm"}, + { "S_TEXT/WEBVTT", "webvtt"}, { "S_DVBSUB", "dvb_subtitle"}, {0} }; |