Browse Source

mkv: support vp9 tag

tags/n1.2
Tom Finegan Luca Barbato 13 years ago
parent
commit
66aabd76a9
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      libavcodec/avcodec.h
  2. +1
    -0
      libavformat/matroska.c

+ 1
- 0
libavcodec/avcodec.h View File

@@ -267,6 +267,7 @@ enum AVCodecID {
AV_CODEC_ID_MTS2,
AV_CODEC_ID_CLLC,
AV_CODEC_ID_MSS2,
AV_CODEC_ID_VP9,

/* various PCM "codecs" */
AV_CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs


+ 1
- 0
libavformat/matroska.c View File

@@ -79,6 +79,7 @@ const CodecTags ff_mkv_codec_tags[]={
{"V_THEORA" , AV_CODEC_ID_THEORA},
{"V_UNCOMPRESSED" , AV_CODEC_ID_RAWVIDEO},
{"V_VP8" , AV_CODEC_ID_VP8},
{"V_VP9" , AV_CODEC_ID_VP9},

{"" , AV_CODEC_ID_NONE}
};


Loading…
Cancel
Save