[vlc-commits] Add VP7 fourcc
Jean-Baptiste Kempf
git at videolan.org
Sun Apr 6 18:43:04 CEST 2014
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Apr 6 18:42:13 2014 +0200| [9cfa77639b08774d29ba22e8d1503e9c81f5ebfc] | committer: Jean-Baptiste Kempf
Add VP7 fourcc
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9cfa77639b08774d29ba22e8d1503e9c81f5ebfc
---
include/vlc_fourcc.h | 3 ++-
src/misc/fourcc.c | 4 ++++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index 46903ea..8aaabd8 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -114,7 +114,9 @@
#define VLC_CODEC_CDG VLC_FOURCC('C','D','G',' ')
#define VLC_CODEC_FRWU VLC_FOURCC('F','R','W','U')
#define VLC_CODEC_AMV VLC_FOURCC('A','M','V',' ')
+#define VLC_CODEC_VP7 VLC_FOURCC('V','P','7','0')
#define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0')
+#define VLC_CODEC_VP9 VLC_FOURCC('V','P','9','0')
#define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K')
#define VLC_CODEC_LAGARITH VLC_FOURCC('L','A','G','S')
#define VLC_CODEC_FLASHSV2 VLC_FOURCC('F','S','V','2')
@@ -131,7 +133,6 @@
#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')
#define VLC_CODEC_ICOD VLC_FOURCC('i','c','o','d')
#define VLC_CODEC_G2M2 VLC_FOURCC('G','2','M','2')
#define VLC_CODEC_G2M3 VLC_FOURCC('G','2','M','3')
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 5c6bc28..16c6c00 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -528,6 +528,10 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_VP6A, "On2's VP6 A Video"),
A("VP6A"),
+ B(VLC_CODEC_VP7, "Google/On2's VP7 Video"),
+ A("VP70"),
+ A("VP71"),
+
B(VLC_CODEC_VP8, "Google/On2's VP8 Video"),
A("VP80"),
More information about the vlc-commits
mailing list