mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 10:04:23 +00:00
adaptivedemux: fix buffer size print format
https://bugzilla.gnome.org/show_bug.cgi?id=772706
This commit is contained in:
parent
e2dea99dc9
commit
e8b24f9189
1 changed files with 1 additions and 1 deletions
|
@ -2370,7 +2370,7 @@ _uri_handler_probe (GstPad * pad, GstPadProbeInfo * info,
|
|||
}
|
||||
stream->fragment_bytes_downloaded += gst_buffer_get_size (buf);
|
||||
GST_LOG_OBJECT (pad,
|
||||
"Received buffer, size %" G_GUINT64_FORMAT " total %" G_GUINT64_FORMAT,
|
||||
"Received buffer, size %" G_GSIZE_FORMAT " total %" G_GUINT64_FORMAT,
|
||||
gst_buffer_get_size (buf), stream->fragment_bytes_downloaded);
|
||||
} else if (GST_PAD_PROBE_INFO_TYPE (info) &
|
||||
GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM) {
|
||||
|
|
Loading…
Reference in a new issue