[vlc-commits] Add FourCC for VP9
Jean-Baptiste Kempf
git at videolan.org
Sun Jan 27 21:50:51 CET 2013
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jan 27 18:19:53 2013 +0100| [8aaf0872d0d7f73d3723e2281192bed04e834eaa] | committer: Jean-Baptiste Kempf
Add FourCC for VP9
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8aaf0872d0d7f73d3723e2281192bed04e834eaa
---
include/vlc_fourcc.h | 1 +
src/misc/fourcc.c | 3 +++
2 files changed, 4 insertions(+)
diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index 2737670..4b2a257 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -132,6 +132,7 @@
#define VLC_CODEC_TSC2 VLC_FOURCC('T','S','C','2')
#define VLC_CODEC_MTS2 VLC_FOURCC('M','T','S','2')
#define VLC_CODEC_HEVC VLC_FOURCC('h','e','v','c')
+#define VLC_CODEC_VP9 VLC_FOURCC('V','P','9','0')
/* Planar YUV 4:1:0 Y:V:U */
#define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9')
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 770dde0..c4c8ed8 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -526,6 +526,9 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_VP8, "Google/On2's VP8 Video"),
A("VP80"),
+ B(VLC_CODEC_VP9, "Google/On2's VP9 Video"),
+ A("VP90"),
+
/* Xiph.org theora */
B(VLC_CODEC_THEORA, "Xiph.org's Theora Video"),
More information about the vlc-commits
mailing list