mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
Use %03u instead of %u in gst_pad_create_stream_id_printf()
This commit is contained in:
parent
e0e91fc958
commit
f656d9eaf7
1 changed files with 1 additions and 1 deletions
|
@ -1002,7 +1002,7 @@ gst_ffmpegdemux_get_stream (GstFFMpegDemux * demux, AVStream * avstream)
|
|||
|
||||
|
||||
stream_id =
|
||||
gst_pad_create_stream_id_printf (pad, GST_ELEMENT_CAST (demux), "%u",
|
||||
gst_pad_create_stream_id_printf (pad, GST_ELEMENT_CAST (demux), "%03u",
|
||||
avstream->index);
|
||||
gst_pad_push_event (pad, gst_event_new_stream_start (stream_id));
|
||||
g_free (stream_id);
|
||||
|
|
Loading…
Reference in a new issue