videoaggregator: update for aggregator start/stop vfunc change
authorTim-Philipp Müller <tim@centricular.com>
Tue, 30 Dec 2014 17:56:35 +0000 (17:56 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 30 Dec 2014 17:56:35 +0000 (17:56 +0000)
gst-libs/gst/video/gstvideoaggregator.c

index e5b49044062657fd596254d9d3a7d0d5d8dd2bb2..e850b6f7bb2ac8c141153f42d7969823fa908115 100644 (file)
@@ -1635,9 +1635,6 @@ gst_videoaggregator_start (GstAggregator * agg)
 {
   GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (agg);
 
-  if (!GST_AGGREGATOR_CLASS (gst_videoaggregator_parent_class)->start (agg))
-    return FALSE;
-
   gst_caps_replace (&vagg->priv->current_caps, NULL);
 
   return TRUE;
@@ -1648,9 +1645,6 @@ gst_videoaggregator_stop (GstAggregator * agg)
 {
   GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (agg);
 
-  if (!GST_AGGREGATOR_CLASS (gst_videoaggregator_parent_class)->stop (agg))
-    return FALSE;
-
   gst_videoaggregator_reset (vagg);
 
   return TRUE;