mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
mxfdemux: Use %03u for format in gst_pad_create_stream_id_printf()
This commit is contained in:
parent
ed7f675966
commit
65cb59912b
1 changed files with 1 additions and 1 deletions
|
@ -1203,7 +1203,7 @@ gst_mxf_demux_update_tracks (GstMXFDemux * demux)
|
|||
|
||||
stream_id =
|
||||
gst_pad_create_stream_id_printf (GST_PAD_CAST (pad),
|
||||
GST_ELEMENT_CAST (demux), "%u", pad->track_id);
|
||||
GST_ELEMENT_CAST (demux), "%03u", pad->track_id);
|
||||
gst_pad_push_event (GST_PAD_CAST (pad),
|
||||
gst_event_new_stream_start (stream_id));
|
||||
g_free (stream_id);
|
||||
|
|
Loading…
Reference in a new issue