From 2c5496eb74498afc6ff26e47773af43239a07abd Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 10 Sep 2002 09:31:40 +0000 Subject: This updates all plugins to the new API for gst_pad_try_set_caps Original commit message from CVS: This updates all plugins to the new API for gst_pad_try_set_caps --- ext/tarkin/gsttarkindec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/tarkin') diff --git a/ext/tarkin/gsttarkindec.c b/ext/tarkin/gsttarkindec.c index e0e538c5..28a7ee0a 100644 --- a/ext/tarkin/gsttarkindec.c +++ b/ext/tarkin/gsttarkindec.c @@ -206,7 +206,7 @@ gst_tarkindec_chain (GstPad *pad, GstBuffer *buf) layer = &tarkindec->tarkin_stream->layer->desc; if (!GST_PAD_CAPS (tarkindec->srcpad)) { - if (!gst_pad_try_set_caps (tarkindec->srcpad, + if (gst_pad_try_set_caps (tarkindec->srcpad, GST_CAPS_NEW ( "tarkin_raw", "video/raw", @@ -219,7 +219,7 @@ gst_tarkindec_chain (GstPad *pad, GstBuffer *buf) "blue_mask", GST_PROPS_INT (0xff), "width", GST_PROPS_INT (layer->width), "height", GST_PROPS_INT (layer->height) - ))) + )) <= 0) { gst_element_error (GST_ELEMENT (tarkindec), "could not output format"); gst_buffer_unref (buf); -- cgit v1.2.1