mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
adaptivedemux: fix log integer format
range_start/range_end shall be logged as G_GINT64_FORMAT https://bugzilla.gnome.org/show_bug.cgi?id=791735
This commit is contained in:
parent
cbcc01173b
commit
f995bcf85a
1 changed files with 1 additions and 1 deletions
|
@ -4287,7 +4287,7 @@ gst_adaptive_demux_stream_update_fragment_info (GstAdaptiveDemux * demux,
|
|||
GST_TIME_ARGS (stream->fragment.timestamp),
|
||||
GST_TIME_ARGS (stream->fragment.duration));
|
||||
GST_LOG_OBJECT (stream->pad,
|
||||
"range start:%" G_GUINT64_FORMAT " end:%" G_GUINT64_FORMAT,
|
||||
"range start:%" G_GINT64_FORMAT " end:%" G_GINT64_FORMAT,
|
||||
stream->fragment.range_start, stream->fragment.range_end);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue