[vlc-commits] Add GoToMeeting FOURCC
Jean-Baptiste Kempf
git at videolan.org
Tue Jun 11 12:42:35 CEST 2013
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Jun 11 12:35:52 2013 +0200| [92faa959bdb84aa2cbbe9b0e17272b8b66027593] | committer: Jean-Baptiste Kempf
Add GoToMeeting FOURCC
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=92faa959bdb84aa2cbbe9b0e17272b8b66027593
---
include/vlc_fourcc.h | 3 +++
src/misc/fourcc.c | 11 ++++++++++-
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index 782af9e..c50acac 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -133,6 +133,9 @@
#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')
+#define VLC_CODEC_G2M4 VLC_FOURCC('G','2','M','4')
/* 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 65685a1..86fa2a0 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -707,7 +707,16 @@ static const staticentry_t p_list_video[] = {
E("ap4h", "Apple ProRes 4444"),
B(VLC_CODEC_ICOD, "Apple Intermediate Codec"),
- A("icod"),
+ A("icod"),
+
+ B(VLC_CODEC_G2M2, "GoTo Meeting Codec 2"),
+ A("G2M2"),
+
+ B(VLC_CODEC_G2M3, "GoTo Meeting Codec 3"),
+ A("G2M3"),
+
+ B(VLC_CODEC_G2M4, "GoTo Meeting Codec 4"),
+ A("G2M4"),
/* */
B(VLC_CODEC_YV12, "Planar 4:2:0 YVU"),
More information about the vlc-commits
mailing list