mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
videoaggregator: update for aggregator start/stop vfunc change
This commit is contained in:
parent
b4d2deb6d6
commit
6fc474c30a
1 changed files with 0 additions and 6 deletions
|
@ -1635,9 +1635,6 @@ gst_videoaggregator_start (GstAggregator * agg)
|
||||||
{
|
{
|
||||||
GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (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);
|
gst_caps_replace (&vagg->priv->current_caps, NULL);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -1648,9 +1645,6 @@ gst_videoaggregator_stop (GstAggregator * agg)
|
||||||
{
|
{
|
||||||
GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (agg);
|
GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (agg);
|
||||||
|
|
||||||
if (!GST_AGGREGATOR_CLASS (gst_videoaggregator_parent_class)->stop (agg))
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
gst_videoaggregator_reset (vagg);
|
gst_videoaggregator_reset (vagg);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue