mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
adaptivedemux: Fix debugging message
GstSegment position is a guint64 and not a gint64 CID #1409910
This commit is contained in:
parent
f4190a49c0
commit
cf362be9ff
1 changed files with 2 additions and 2 deletions
|
@ -1454,9 +1454,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);
|
||||
|
|
Loading…
Reference in a new issue