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 --- gst/speed/gstspeed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/speed') diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c index d943b608..2a30a7ad 100644 --- a/gst/speed/gstspeed.c +++ b/gst/speed/gstspeed.c @@ -121,10 +121,10 @@ speed_connect (GstPad *pad, GstCaps *caps) otherpad = (pad == filter->srcpad ? filter->sinkpad : filter->srcpad); if (GST_CAPS_IS_FIXED (caps)) { - if (!speed_parse_caps (filter, caps) || !gst_pad_try_set_caps (otherpad, caps)) + if (!speed_parse_caps (filter, caps)) return GST_PAD_CONNECT_REFUSED; - return GST_PAD_CONNECT_OK; + return gst_pad_try_set_caps(otherpad, caps); } return GST_PAD_CONNECT_DELAYED; -- cgit v1.2.1