mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
oggmux: Print GstClockTimeDiff as a signed integer in debug logs
This commit is contained in:
parent
799020804f
commit
2206ba473f
1 changed files with 2 additions and 2 deletions
|
@ -887,9 +887,9 @@ gst_ogg_mux_decorate_buffer (GstOggMux * ogg_mux, GstOggPadData * pad,
|
||||||
limit = MAX (limit, ogg_mux->max_tolerance);
|
limit = MAX (limit, ogg_mux->max_tolerance);
|
||||||
|
|
||||||
GST_LOG_OBJECT (pad->collect.pad, "expected granule %" G_GINT64_FORMAT " == "
|
GST_LOG_OBJECT (pad->collect.pad, "expected granule %" G_GINT64_FORMAT " == "
|
||||||
"time %" GST_TIME_FORMAT " --> ts diff %" GST_TIME_FORMAT
|
"time %" GST_TIME_FORMAT " --> ts diff %" GST_STIME_FORMAT
|
||||||
" < tolerance %" GST_TIME_FORMAT " (?)",
|
" < tolerance %" GST_TIME_FORMAT " (?)",
|
||||||
granule, GST_TIME_ARGS (next_time), GST_TIME_ARGS (ABS (diff)),
|
granule, GST_TIME_ARGS (next_time), GST_STIME_ARGS (diff),
|
||||||
GST_TIME_ARGS (limit));
|
GST_TIME_ARGS (limit));
|
||||||
|
|
||||||
resync:
|
resync:
|
||||||
|
|
Loading…
Reference in a new issue