mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
video: use appropriate printf format for gsize
This commit is contained in:
parent
2887485358
commit
675562d362
1 changed files with 2 additions and 1 deletions
|
@ -232,7 +232,8 @@ gst_buffer_add_video_meta_full (GstBuffer * buffer,
|
|||
for (i = 0; i < n_planes; i++) {
|
||||
meta->offset[i] = offset[i];
|
||||
meta->stride[i] = stride[i];
|
||||
GST_LOG ("plane %d, offset %u, stride %d", i, offset[i], stride[i]);
|
||||
GST_LOG ("plane %d, offset %" G_GSIZE_FORMAT ", stride %d", i, offset[i],
|
||||
stride[i]);
|
||||
}
|
||||
meta->map = default_map;
|
||||
meta->unmap = default_unmap;
|
||||
|
|
Loading…
Reference in a new issue