From d022c250a1b601bf7e3d489e7b6b77d506a0a1cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 17 Oct 2005 16:14:29 +0000 Subject: [PATCH] gst-libs/gst/riff/riff-media.c: Add support for Indeo-3 (IV32). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original commit message from CVS: Reviewed by: Tim-Philipp Müller * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps), (gst_riff_create_video_template_caps): Add support for Indeo-3 (IV32). --- ChangeLog | 8 ++++++++ common | 2 +- gst-libs/gst/riff/riff-media.c | 8 ++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index baadd77b10..21c0511f8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-10-17 Fabrizio Gennari + + Reviewed by: Tim-Philipp Müller + + * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps), + (gst_riff_create_video_template_caps): + Add support for Indeo-3 (IV32). + 2005-10-17 Thomas Vander Stichele * configure.ac: diff --git a/common b/common index 7d9e2e10b6..cf363b3ae6 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 7d9e2e10b66efa4ce40e896212108543831aa0e9 +Subproject commit cf363b3ae6ce3c4a84a561e04ffc4e3b37435a61 diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c index 3233538840..68f30d414e 100644 --- a/gst-libs/gst/riff/riff-media.c +++ b/gst-libs/gst/riff/riff-media.c @@ -342,6 +342,13 @@ gst_riff_create_video_caps (guint32 codec_fcc, *codec_name = g_strdup ("Xan Wing Commander 4"); break; + case GST_MAKE_FOURCC ('I', 'V', '3', '2'): + caps = gst_caps_new_simple ("video/x-indeo", + "indeoversion", G_TYPE_INT, 3, NULL); + if (codec_name) + *codec_name = g_strdup ("Intel Video 3"); + break; + case GST_MAKE_FOURCC ('I', 'V', '5', '0'): caps = gst_caps_new_simple ("video/x-intel", "ivversion", G_TYPE_INT, 5, NULL); @@ -643,6 +650,7 @@ gst_riff_create_video_template_caps (void) GST_MAKE_FOURCC ('R', 'L', 'E', ' '), GST_MAKE_FOURCC ('D', 'I', 'B', ' '), GST_MAKE_FOURCC ('X', 'x', 'a', 'n'), + GST_MAKE_FOURCC ('I', 'V', '3', '2'), GST_MAKE_FOURCC ('I', 'V', '5', '0'), GST_MAKE_FOURCC ('M', '4', 'S', '2'), /* FILL ME */