From c33faee6bac27102cd04897ceec9ab040473d9ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Sun, 8 Apr 2018 16:20:39 +0300 Subject: 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. --- demux/demux_mkv.c | 1 + 1 file changed, 1 insertion(+) (limited to 'demux') 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} }; -- cgit v1.2.3