1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00

demux_mkv: support vp9

Note that ffmpeg doesn't provide a decoder by default yet.
This commit is contained in:
wm4 2013-04-14 04:36:58 +02:00
parent 8b017c73c4
commit 80d0ab1058
3 changed files with 3 additions and 0 deletions

View File

@ -310,6 +310,7 @@ static const struct mp_codec_tag mp_video_codec_tags[] = {
{MKTAG('I', 'N', 'P', 'V'), "interplayvideo"},
{MKTAG('V', 'Q', 'A', 'V'), "ws_vqa"},
{MKTAG('C', '9', '3', 'V'), "c93"},
{MKTAG('V', 'P', '9', '0'), "vp9"},
{0},
};

View File

@ -1177,6 +1177,7 @@ static const videocodec_info_t vinfo[] = {
{MKV_V_MPEG4_AVC, mmioFOURCC('a', 'v', 'c', '1'), 1},
{MKV_V_THEORA, mmioFOURCC('t', 'h', 'e', 'o'), 1},
{MKV_V_VP8, mmioFOURCC('V', 'P', '8', '0'), 0},
{MKV_V_VP9, mmioFOURCC('V', 'P', '9', '0'), 0},
{NULL, 0, 0}
};

View File

@ -75,6 +75,7 @@
#define MKV_V_MPEG4_AVC "V_MPEG4/ISO/AVC"
#define MKV_V_THEORA "V_THEORA"
#define MKV_V_VP8 "V_VP8"
#define MKV_V_VP9 "V_VP9"
#define MKV_V_MJPEG "V_MJPEG"
#define MKV_V_UNCOMPRESSED "V_UNCOMPRESSED"