mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
splitmuxsink: Fix debug statement signedness.
The ts variable is a GstClockTime, don't print it as a GstClockTimeDiff.
This commit is contained in:
parent
6755691b28
commit
8b4ceb2ef3
1 changed files with 1 additions and 1 deletions
|
@ -1111,7 +1111,7 @@ handle_mq_input (GstPad * pad, GstPadProbeInfo * info, MqStreamCtx * ctx)
|
||||||
else
|
else
|
||||||
ts = GST_BUFFER_DTS (buf);
|
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);
|
GST_SPLITMUX_LOCK (splitmux);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue