splitmuxsink: Fix debug statement signedness.

The ts variable is a GstClockTime, don't print it
as a GstClockTimeDiff.
This commit is contained in:
Jan Schmidt 2016-07-25 18:20:03 +10:00
parent 6755691b28
commit 8b4ceb2ef3

View file

@ -1111,7 +1111,7 @@ handle_mq_input (GstPad * pad, GstPadProbeInfo * info, MqStreamCtx * ctx)
else else
ts = GST_BUFFER_DTS (buf); ts = GST_BUFFER_DTS (buf);
GST_LOG_OBJECT (pad, "Buffer TS is %" GST_STIME_FORMAT, GST_STIME_ARGS (ts)); GST_LOG_OBJECT (pad, "Buffer TS is %" GST_TIME_FORMAT, GST_TIME_ARGS (ts));
GST_SPLITMUX_LOCK (splitmux); GST_SPLITMUX_LOCK (splitmux);