mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
gst-libs/gst/riff/riff-media.c: Add support for Indeo-3 (IV32).
Original commit message from CVS: Reviewed by: Tim-Philipp Müller <tim at centricular dot net> * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps), (gst_riff_create_video_template_caps): Add support for Indeo-3 (IV32).
This commit is contained in:
parent
c56f490018
commit
d022c250a1
3 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
|
||||
|
||||
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* 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 <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 7d9e2e10b66efa4ce40e896212108543831aa0e9
|
||||
Subproject commit cf363b3ae6ce3c4a84a561e04ffc4e3b37435a61
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue