mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
autoparsers: use appropriate printf format for gsize
This commit is contained in:
parent
b46dcf379a
commit
16128f0234
1 changed files with 2 additions and 1 deletions
|
@ -266,7 +266,8 @@ resync:
|
|||
}
|
||||
need_more_data:
|
||||
{
|
||||
GST_LOG_OBJECT (parse, "need %u bytes, but only have %" G_GSIZE_FORMAT,
|
||||
GST_LOG_OBJECT (parse,
|
||||
"need %" G_GSIZE_FORMAT " bytes, but only have %" G_GSIZE_FORMAT,
|
||||
frame_len, map.size);
|
||||
gst_base_parse_set_min_frame_size (parse, frame_len);
|
||||
gst_buffer_unmap (frame->buffer, &map);
|
||||
|
|
Loading…
Reference in a new issue