mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
matroskademux: improve stream synchronization
In particular, do not make it send newsegment updates that sort-of contradict the indented playback segment (e.g. start time).
This commit is contained in:
parent
b527360f21
commit
f0d6b841a2
1 changed files with 6 additions and 3 deletions
|
@ -3526,9 +3526,12 @@ gst_matroska_demux_sync_streams (GstMatroskaDemux * demux)
|
|||
"Checking for resync on stream %d (%" GST_TIME_FORMAT ")", stream_nr,
|
||||
GST_TIME_ARGS (context->pos));
|
||||
|
||||
/* does it lag? 0.5 seconds is a random threshold... */
|
||||
if (GST_CLOCK_TIME_IS_VALID (context->pos)
|
||||
&& context->pos + (GST_SECOND / 2) < demux->segment.last_stop) {
|
||||
/* does it lag? 0.5 seconds is a random threshold...
|
||||
* lag need only be considered if we have advanced into requested segment */
|
||||
if (GST_CLOCK_TIME_IS_VALID (context->pos) &&
|
||||
GST_CLOCK_TIME_IS_VALID (demux->segment.last_stop) &&
|
||||
demux->segment.last_stop > demux->segment.start &&
|
||||
context->pos + (GST_SECOND / 2) < demux->segment.last_stop) {
|
||||
GST_DEBUG_OBJECT (demux,
|
||||
"Synchronizing stream %d with others by advancing time " "from %"
|
||||
GST_TIME_FORMAT " to %" GST_TIME_FORMAT, stream_nr,
|
||||
|
|
Loading…
Reference in a new issue