mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
aggregator: Don't try to push tags while flush seeking
The downstream segment could have been flushed already, so need to re-send the segment event before re-sending the tags. https://bugzilla.gnome.org/show_bug.cgi?id=742684
This commit is contained in:
parent
83203e9dc4
commit
8f8430ee9e
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ gst_aggregator_push_mandatory_events (GstAggregator * self)
|
|||
GST_DEBUG_OBJECT (self, "pushing segment %" GST_PTR_FORMAT, segment);
|
||||
}
|
||||
|
||||
if (priv->tags && priv->tags_changed) {
|
||||
if (priv->tags && priv->tags_changed && !self->priv->flush_seeking) {
|
||||
tags = gst_event_new_tag (gst_tag_list_ref (priv->tags));
|
||||
priv->tags_changed = FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue