mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
matroskademux: fix stream synchronization
.. by initializing streams starting at 0, as that is basically where we 'seek to' at the start and assume streams to start elsewhere. Also enables newsegment update events for subtitle streams.
This commit is contained in:
parent
a9f5bbe1ff
commit
9bec2b1127
1 changed files with 1 additions and 1 deletions
|
@ -1075,7 +1075,7 @@ gst_matroska_demux_add_stream (GstMatroskaDemux * demux)
|
|||
context->index_writer_id = -1;
|
||||
context->type = 0; /* no type yet */
|
||||
context->default_duration = 0;
|
||||
context->pos = GST_CLOCK_TIME_NONE;
|
||||
context->pos = 0;
|
||||
context->set_discont = TRUE;
|
||||
context->timecodescale = 1.0;
|
||||
context->flags =
|
||||
|
|
Loading…
Reference in a new issue