mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
basesink: Allow update NEWSEGMENT events after EOS
This allows demuxers to update the segment stop of an already finished stream. This might be needed if some stream goes to EOS before the duration of the longest stream is known to properly set the segment stop of all streams to the same value in the end.
This commit is contained in:
parent
c2b0e9de25
commit
25fc43487b
1 changed files with 5 additions and 1 deletions
|
@ -3140,6 +3140,7 @@ gst_base_sink_event (GstPad * pad, GstEvent * event)
|
|||
case GST_EVENT_NEWSEGMENT:
|
||||
{
|
||||
GstFlowReturn ret;
|
||||
gboolean update;
|
||||
|
||||
GST_DEBUG_OBJECT (basesink, "newsegment %p", event);
|
||||
|
||||
|
@ -3147,7 +3148,10 @@ gst_base_sink_event (GstPad * pad, GstEvent * event)
|
|||
if (G_UNLIKELY (basesink->flushing))
|
||||
goto flushing;
|
||||
|
||||
if (G_UNLIKELY (basesink->priv->received_eos)) {
|
||||
gst_event_parse_new_segment_full (event, &update, NULL, NULL, NULL, NULL,
|
||||
NULL, NULL);
|
||||
|
||||
if (G_UNLIKELY (basesink->priv->received_eos && !update)) {
|
||||
/* we can't accept anything when we are EOS */
|
||||
result = FALSE;
|
||||
gst_event_unref (event);
|
||||
|
|
Loading…
Reference in a new issue