summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2017-05-26 17:30:10 +0200
committerEdward Hervey <bilboed@bilboed.com>2017-06-12 16:07:32 +0200
commite98b8241c36ce0c1b75c379b55b0c70371e3cf74 (patch)
tree6c9bbee26c8f2da636415938586b86cc21321482 /gst-libs
parentff924fbdc687b224bf3744fd9ef6b5ff32eb99d1 (diff)
downloadgstreamer-plugins-bad-e98b8241c36ce0c1b75c379b55b0c70371e3cf74.tar.gz
adaptivedemux: Fix debugging message
GstSegment position is a guint64 and not a gint64 CID #1409910
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/adaptivedemux/gstadaptivedemux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c
index 68e0d5aaa..3843b1f5b 100644
--- a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c
+++ b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c
@@ -1447,9 +1447,9 @@ gst_adaptive_demux_stream_in_live_seek_range (GstAdaptiveDemux * demux,
gint64 range_start, range_stop;
if (gst_adaptive_demux_get_live_seek_range (demux, &range_start, &range_stop)) {
GST_LOG_OBJECT (stream->pad,
- "stream position %" GST_STIME_FORMAT " live seek range %"
+ "stream position %" GST_TIME_FORMAT " live seek range %"
GST_STIME_FORMAT " - %" GST_STIME_FORMAT,
- GST_STIME_ARGS (stream->segment.position), GST_STIME_ARGS (range_start),
+ GST_TIME_ARGS (stream->segment.position), GST_STIME_ARGS (range_start),
GST_STIME_ARGS (range_stop));
return (stream->segment.position >= range_start
&& stream->segment.position <= range_stop);