diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-09-10 09:31:40 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-09-10 09:31:40 +0000 |
commit | 2c5496eb74498afc6ff26e47773af43239a07abd (patch) | |
tree | d246cf3070c309a87325709fd05169b553b0024e /gst/speed | |
parent | af558bdc6f39c680689423d98d2b60e7fd7a4c81 (diff) | |
download | gst-plugins-bad-2c5496eb74498afc6ff26e47773af43239a07abd.tar.gz gst-plugins-bad-2c5496eb74498afc6ff26e47773af43239a07abd.tar.bz2 gst-plugins-bad-2c5496eb74498afc6ff26e47773af43239a07abd.zip |
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
Diffstat (limited to 'gst/speed')
-rw-r--r-- | gst/speed/gstspeed.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |