From 227f1d1e0f338d5c2ac5f8aaf96bd0d8cd1613c9 Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Tue, 3 Nov 2015 13:44:39 +0000 Subject: [PATCH] videodecoder: Print GstClockTimeDiff as a signed integer in debug logs --- gst-libs/gst/video/gstvideodecoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/video/gstvideodecoder.c b/gst-libs/gst/video/gstvideodecoder.c index 03e31b7012..8a74efea69 100644 --- a/gst-libs/gst/video/gstvideodecoder.c +++ b/gst-libs/gst/video/gstvideodecoder.c @@ -1630,8 +1630,8 @@ gst_video_decoder_src_event_default (GstVideoDecoder * decoder, GST_OBJECT_UNLOCK (decoder); GST_DEBUG_OBJECT (decoder, - "got QoS %" GST_TIME_FORMAT ", %" G_GINT64_FORMAT ", %g", - GST_TIME_ARGS (timestamp), diff, proportion); + "got QoS %" GST_TIME_FORMAT ", %" GST_STIME_FORMAT ", %g", + GST_TIME_ARGS (timestamp), GST_STIME_ARGS (diff), proportion); res = gst_pad_push_event (decoder->sinkpad, event); break;