mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
matroskademux: make stream-id more readable and order-friendly
... as streams are so ordered by id by e.g. decodebin (and as typically already honoured by other demuxers).
This commit is contained in:
parent
7456ee1e1b
commit
afad769c78
1 changed files with 2 additions and 1 deletions
|
@ -1295,7 +1295,8 @@ gst_matroska_demux_add_stream (GstMatroskaDemux * demux, GstEbmlRead * ebml)
|
|||
|
||||
stream_id =
|
||||
gst_pad_create_stream_id_printf (context->pad, GST_ELEMENT_CAST (demux),
|
||||
"%03" G_GUINT64_FORMAT, context->uid);
|
||||
"%03" G_GUINT64_FORMAT ":%03" G_GUINT64_FORMAT,
|
||||
context->num, context->uid);
|
||||
stream_start =
|
||||
gst_pad_get_sticky_event (demux->common.sinkpad, GST_EVENT_STREAM_START,
|
||||
0);
|
||||
|
|
Loading…
Reference in a new issue