summaryrefslogtreecommitdiffstats
path: root/demux/demux_mkv.c
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2018-04-08 16:20:39 +0300
committerKevin Mitchell <kevmitch@gmail.com>2018-04-08 13:53:29 -0700
commitc33faee6bac27102cd04897ceec9ab040473d9ba (patch)
treee02f7c7894b1fb19e17b5108a237e4488595e241 /demux/demux_mkv.c
parentcacb0ad3dc40c89db51d2233f01acf12a66eba55 (diff)
downloadmpv-c33faee6bac27102cd04897ceec9ab040473d9ba.tar.bz2
mpv-c33faee6bac27102cd04897ceec9ab040473d9ba.tar.xz
demux_mkv: add V_AV1 identifier for AV1
Quickly tested by a person who had FFmpeg linked with libaom. Seems as simple as the VP9 mappings, where there is no extradata/ initialization data off-band, and just stuff in the packets themselves. Do note that the AV1 video format itself at this point is still not frozen, so what you might produce one day might not be decodable the following day.
Diffstat (limited to 'demux/demux_mkv.c')
-rw-r--r--demux/demux_mkv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/demux_mkv.c b/demux/demux_mkv.c
index 310a6d4bcd..a9944a188d 100644
--- a/demux/demux_mkv.c
+++ b/demux/demux_mkv.c
@@ -1384,6 +1384,7 @@ static const char *const mkv_video_tags[][2] = {
{"V_PRORES", "prores"},
{"V_MPEGH/ISO/HEVC", "hevc"},
{"V_SNOW", "snow"},
+ {"V_AV1", "av1"},
{0}
};