From 8b4ceb2ef37955e0e0b7f1ae58f7e3eeee449e80 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Mon, 25 Jul 2016 18:20:03 +1000 Subject: [PATCH] splitmuxsink: Fix debug statement signedness. The ts variable is a GstClockTime, don't print it as a GstClockTimeDiff. --- gst/multifile/gstsplitmuxsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/multifile/gstsplitmuxsink.c b/gst/multifile/gstsplitmuxsink.c index 8d5d70f..bf66a11 100644 --- a/gst/multifile/gstsplitmuxsink.c +++ b/gst/multifile/gstsplitmuxsink.c @@ -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); -- 2.7.4