Commit 8aaf0872 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Add FourCC for VP9

parent d74f7c41
...@@ -132,6 +132,7 @@ ...@@ -132,6 +132,7 @@
#define VLC_CODEC_TSC2 VLC_FOURCC('T','S','C','2') #define VLC_CODEC_TSC2 VLC_FOURCC('T','S','C','2')
#define VLC_CODEC_MTS2 VLC_FOURCC('M','T','S','2') #define VLC_CODEC_MTS2 VLC_FOURCC('M','T','S','2')
#define VLC_CODEC_HEVC VLC_FOURCC('h','e','v','c') #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 */ /* Planar YUV 4:1:0 Y:V:U */
#define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9') #define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9')
......
...@@ -526,6 +526,9 @@ static const staticentry_t p_list_video[] = { ...@@ -526,6 +526,9 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_VP8, "Google/On2's VP8 Video"), B(VLC_CODEC_VP8, "Google/On2's VP8 Video"),
A("VP80"), A("VP80"),
B(VLC_CODEC_VP9, "Google/On2's VP9 Video"),
A("VP90"),
/* Xiph.org theora */ /* Xiph.org theora */
B(VLC_CODEC_THEORA, "Xiph.org's Theora Video"), B(VLC_CODEC_THEORA, "Xiph.org's Theora Video"),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment