mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
aggregator: Don't automatically adjust segment if subclass provided one
On the first buffer the base class would update the segment position based on the start-time-selection. If the subclass provides its own segment this will caused unexpected behaviour and override segment information that was explicitly set by the subclass. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/600>
This commit is contained in:
parent
e97c520f06
commit
070f663ae1
1 changed files with 3 additions and 0 deletions
|
@ -3611,6 +3611,9 @@ gst_aggregator_update_segment (GstAggregator * self, const GstSegment * segment)
|
|||
GST_OBJECT_LOCK (self);
|
||||
GST_AGGREGATOR_PAD (self->srcpad)->segment = *segment;
|
||||
self->priv->send_segment = TRUE;
|
||||
/* we have a segment from the subclass now and really shouldn't override
|
||||
* anything in that segment anymore, like the segment.position */
|
||||
self->priv->first_buffer = FALSE;
|
||||
GST_OBJECT_UNLOCK (self);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue