mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
aggregator: Flush sinkpads when stopping
All values are meaningless in that case, so we should make sure that we clean everything
This commit is contained in:
parent
7e5d9daf8e
commit
e3075ed3ef
1 changed files with 11 additions and 0 deletions
|
@ -690,11 +690,22 @@ eat:
|
|||
return res;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
_flush_pad (GstAggregator * self, GstAggregatorPad * pad, gpointer unused_udata)
|
||||
{
|
||||
_aggpad_flush (pad, self);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
_stop (GstAggregator * agg)
|
||||
{
|
||||
_reset_flow_values (agg);
|
||||
|
||||
gst_aggregator_iterate_sinkpads (agg,
|
||||
(GstAggregatorPadForeachFunc) _flush_pad, NULL);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue