projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
6755691
)
splitmuxsink: Fix debug statement signedness.
author
Jan Schmidt
<jan@centricular.com>
Mon, 25 Jul 2016 08:20:03 +0000
(18:20 +1000)
committer
Jan Schmidt
<jan@centricular.com>
Mon, 25 Jul 2016 08:20:03 +0000
(18:20 +1000)
The ts variable is a GstClockTime, don't print it
as a GstClockTimeDiff.
gst/multifile/gstsplitmuxsink.c
patch
|
blob
|
history
diff --git
a/gst/multifile/gstsplitmuxsink.c
b/gst/multifile/gstsplitmuxsink.c
index 8d5d70fe20ee3e8b2b3f6a55e677315e130e8844..bf66a113f50a583b38e7b7cae3cf07d61058cd45 100644
(file)
--- a/
gst/multifile/gstsplitmuxsink.c
+++ b/
gst/multifile/gstsplitmuxsink.c
@@
-1111,7
+1111,7
@@
handle_mq_input (GstPad * pad, GstPadProbeInfo * info, MqStreamCtx * ctx)
else
ts = GST_BUFFER_DTS (buf);
- GST_LOG_OBJECT (pad, "Buffer TS is %" GST_
STIME_FORMAT, GST_S
TIME_ARGS (ts));
+ GST_LOG_OBJECT (pad, "Buffer TS is %" GST_
TIME_FORMAT, GST_
TIME_ARGS (ts));
GST_SPLITMUX_LOCK (splitmux);