splitmuxsink: Fix debug statement signedness.
authorJan Schmidt <jan@centricular.com>
Mon, 25 Jul 2016 08:20:03 +0000 (18:20 +1000)
committerJan Schmidt <jan@centricular.com>
Mon, 25 Jul 2016 08:20:03 +0000 (18:20 +1000)
The ts variable is a GstClockTime, don't print it
as a GstClockTimeDiff.

gst/multifile/gstsplitmuxsink.c

index 8d5d70f..bf66a11 100644 (file)
@@ -1111,7 +1111,7 @@ handle_mq_input (GstPad * pad, GstPadProbeInfo * info, MqStreamCtx * ctx)
   else
     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);