mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
streamsynchronizer: fix printf format compiler warnings
Make OSX build bot happy.
This commit is contained in:
parent
db5d418282
commit
818f395402
1 changed files with 3 additions and 2 deletions
|
@ -603,8 +603,9 @@ gst_stream_synchronizer_sink_chain (GstPad * pad, GstBuffer * buffer)
|
|||
new_start = timestamp_end - GST_SECOND;
|
||||
|
||||
GST_DEBUG_OBJECT (ostream->sinkpad,
|
||||
"Advancing stream %d from %" GST_TIME_FORMAT " to %"
|
||||
GST_TIME_FORMAT, ostream->stream_number, last_stop, new_start);
|
||||
"Advancing stream %u from %" GST_TIME_FORMAT " to %"
|
||||
GST_TIME_FORMAT, ostream->stream_number, GST_TIME_ARGS (last_stop),
|
||||
GST_TIME_ARGS (new_start));
|
||||
|
||||
gst_pad_push_event (ostream->srcpad,
|
||||
gst_event_new_new_segment_full (TRUE, ostream->segment.rate,
|
||||
|
|
Loading…
Reference in a new issue