summaryrefslogtreecommitdiffstats
path: root/ext/gdk_pixbuf/gstgdkanimation.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-11-25 23:45:41 +0000
committerBenjamin Otte <otte@gnome.org>2003-11-25 23:45:41 +0000
commit47e31d379fcde27975eed12c2ba7553be46de9a9 (patch)
treebb7f687f30a971d5d25c42014349b4c7cc243b63 /ext/gdk_pixbuf/gstgdkanimation.c
parentdddf7c2b3ed2548029be8fa178794d814fe5ae03 (diff)
use correct caps
Original commit message from CVS: use correct caps
Diffstat (limited to 'ext/gdk_pixbuf/gstgdkanimation.c')
-rw-r--r--ext/gdk_pixbuf/gstgdkanimation.c35
1 files changed, 18 insertions, 17 deletions
diff --git a/ext/gdk_pixbuf/gstgdkanimation.c b/ext/gdk_pixbuf/gstgdkanimation.c
index 766191c3..e1fc9fac 100644
--- a/ext/gdk_pixbuf/gstgdkanimation.c
+++ b/ext/gdk_pixbuf/gstgdkanimation.c
@@ -235,17 +235,22 @@ static gboolean
gst_gdk_animation_iter_create_pipeline (GstGdkAnimationIter *iter)
{
GstElement *src, *typefind, *autoplugger, *sink, *colorspace;
- GstCaps *caps = GST_CAPS_NEW ("pixbuf_filter",
+ GstCaps *caps = GST_CAPS_NEW ("pixbuf_filter32",
"video/x-raw-rgb",
"endianness", GST_PROPS_INT (G_BIG_ENDIAN),
- "bpp", GST_PROPS_LIST (
- GST_PROPS_INT (32),
- GST_PROPS_INT (24)
- ),
- "red_mask", GST_PROPS_INT (0x00FF0000),
- "green_mask", GST_PROPS_INT (0x0000FF00),
- "blue_mask", GST_PROPS_INT (0x000000FF)
+ "bpp", GST_PROPS_INT (32),
+ "red_mask", GST_PROPS_INT (0xFF000000),
+ "green_mask", GST_PROPS_INT (0x00FF0000),
+ "blue_mask", GST_PROPS_INT (0x0000FF00)
);
+ gst_caps_append (caps, GST_CAPS_NEW ("pixbuf_filter24",
+ "video/x-raw-rgb",
+ "endianness", GST_PROPS_INT (G_BIG_ENDIAN),
+ "bpp", GST_PROPS_INT (24),
+ "red_mask", GST_PROPS_INT (0xFF0000),
+ "green_mask", GST_PROPS_INT (0x00FF00),
+ "blue_mask", GST_PROPS_INT (0x0000FF)
+ ));
iter->pipeline = gst_element_factory_make ("pipeline", "main_pipeline");
if (iter->pipeline == NULL) return FALSE;
@@ -276,15 +281,11 @@ gst_gdk_animation_iter_create_pipeline (GstGdkAnimationIter *iter)
if (!gst_element_link (typefind, autoplugger))
goto error;
- /* add ffcolorspace if available so we get svq1, too */
- if ((colorspace = gst_element_factory_make ("ffcolorspace", "ffcolorspace"))) {
- gst_bin_add (GST_BIN (iter->pipeline), colorspace);
- if (!gst_element_link (autoplugger, colorspace))
- goto error;
- autoplugger = colorspace;
- }
-
- if (!(colorspace = gst_element_factory_make ("colorspace", "colorspace")))
+ /* try ffcolorspace if available so we get svq1, too */
+ colorspace = gst_element_factory_make ("ffcolorspace", "ffcolorspace");
+ if (!colorspace)
+ colorspace = gst_element_factory_make ("colorspace", "colorspace");
+ if (!colorspace)
goto error;
gst_bin_add (GST_BIN (iter->pipeline), colorspace);
if (!gst_element_link (autoplugger, colorspace))