videodecoder: Print GstClockTimeDiff as a signed integer in debug logs

This commit is contained in:
Sebastian Dröge 2015-10-29 16:01:26 +02:00
parent 49e71afe7b
commit f17758d9e3

View file

@ -4024,9 +4024,9 @@ gst_video_decoder_get_max_decode_time (GstVideoDecoder *
deadline = G_MAXINT64;
GST_LOG_OBJECT (decoder, "earliest %" GST_TIME_FORMAT
", frame deadline %" GST_TIME_FORMAT ", deadline %" GST_TIME_FORMAT,
", frame deadline %" GST_TIME_FORMAT ", deadline %" GST_STIME_FORMAT,
GST_TIME_ARGS (earliest_time), GST_TIME_ARGS (frame->deadline),
GST_TIME_ARGS (deadline));
GST_STIME_ARGS (deadline));
GST_OBJECT_UNLOCK (decoder);