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/chart/gstchart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/chart') diff --git a/gst/chart/gstchart.c b/gst/chart/gstchart.c index e1c106ae..e24521a0 100644 --- a/gst/chart/gstchart.c +++ b/gst/chart/gstchart.c @@ -350,7 +350,7 @@ gst_chart_chain (GstPad *pad, GstBuffer *bufin) /* Check if we need to renegotiate size. */ if (chart->first_buffer) { GST_DEBUG (0, "making new pad"); - if (!gst_pad_try_set_caps (chart->srcpad, + if (gst_pad_try_set_caps (chart->srcpad, GST_CAPS_NEW ( "chartsrc", "video/raw", @@ -363,7 +363,7 @@ gst_chart_chain (GstPad *pad, GstBuffer *bufin) "blue_mask", GST_PROPS_INT (0x001f), "width", GST_PROPS_INT (chart->width), "height", GST_PROPS_INT (chart->height) - ))) + )) <= 0) { gst_element_error (GST_ELEMENT (chart), "could not set caps"); return; -- cgit v1.2.1