mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
videodecoder: Print GstClockTimeDiff as a signed integer in debug logs
This commit is contained in:
parent
49e71afe7b
commit
f17758d9e3
1 changed files with 2 additions and 2 deletions
|
@ -4024,9 +4024,9 @@ gst_video_decoder_get_max_decode_time (GstVideoDecoder *
|
||||||
deadline = G_MAXINT64;
|
deadline = G_MAXINT64;
|
||||||
|
|
||||||
GST_LOG_OBJECT (decoder, "earliest %" GST_TIME_FORMAT
|
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 (earliest_time), GST_TIME_ARGS (frame->deadline),
|
||||||
GST_TIME_ARGS (deadline));
|
GST_STIME_ARGS (deadline));
|
||||||
|
|
||||||
GST_OBJECT_UNLOCK (decoder);
|
GST_OBJECT_UNLOCK (decoder);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue