[FFmpeg-cvslog] mkv: support vp9 tag
Tom Finegan
git at videolan.org
Tue Jan 15 15:13:43 CET 2013
ffmpeg | branch: master | Tom Finegan <tomfinegan at chromium.org> | Sat Dec 15 23:18:41 2012 +0100| [66aabd76a9c0eaa65baad72453ca09eb161fee25] | committer: Luca Barbato
mkv: support vp9 tag
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=66aabd76a9c0eaa65baad72453ca09eb161fee25
---
libavcodec/avcodec.h | 1 +
libavformat/matroska.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index e57170b..09b9b42 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -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
diff --git a/libavformat/matroska.c b/libavformat/matroska.c
index 5d1c134..7976be0 100644
--- a/libavformat/matroska.c
+++ b/libavformat/matroska.c
@@ -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}
};
More information about the ffmpeg-cvslog
mailing list