[vlc-commits] Introduce MSS1 and MSS2 fourcc
Jean-Baptiste Kempf
git at videolan.org
Mon Jun 25 00:01:39 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jun 24 23:44:34 2012 +0200| [3f58dfc84ab03ff274d4cdc9b846ad37c2d9327d] | committer: Jean-Baptiste Kempf
Introduce MSS1 and MSS2 fourcc
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3f58dfc84ab03ff274d4cdc9b846ad37c2d9327d
---
include/vlc_fourcc.h | 2 ++
src/misc/fourcc.c | 8 ++++++++
2 files changed, 10 insertions(+)
diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index 51ef78a..25ecc0a 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -126,6 +126,8 @@
#define VLC_CODEC_UTVIDEO VLC_FOURCC('U','L','R','A')
#define VLC_CODEC_VBLE VLC_FOURCC('V','B','L','E')
#define VLC_CODEC_DXTORY VLC_FOURCC('x','t','o','r')
+#define VLC_CODEC_MSS1 VLC_FOURCC('M','S','S','1')
+#define VLC_CODEC_MSS2 VLC_FOURCC('M','S','S','2')
/* 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 a510aee..8592654 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -923,6 +923,14 @@ static const entry_t p_list_video[] = {
B(VLC_CODEC_DXTORY, "Dxtory capture format"),
A("xtor"),
+ B(VLC_CODEC_MSS1, "Windows Media Video 7 Screen"),
+ A("MSS1"),
+ A("mss1"),
+
+ B(VLC_CODEC_MSS2, "Windows Media Video 9 Screen"),
+ A("MSS2"),
+ A("mss2"),
+
B(0, "")
};
static const entry_t p_list_audio[] = {
More information about the vlc-commits
mailing list