mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
rtp: use appropriate printf format for gsize
This commit is contained in:
parent
df88341ffb
commit
de41376231
1 changed files with 2 additions and 2 deletions
|
@ -217,7 +217,7 @@ read_caps (GstRtpGSTDepay * rtpgstdepay, GstBuffer * buf, guint * skip)
|
||||||
|
|
||||||
gst_buffer_map (buf, &map, GST_MAP_READ);
|
gst_buffer_map (buf, &map, GST_MAP_READ);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (rtpgstdepay, "buffer size %u", map.size);
|
GST_DEBUG_OBJECT (rtpgstdepay, "buffer size %" G_GSIZE_FORMAT, map.size);
|
||||||
|
|
||||||
if (!read_length (rtpgstdepay, map.data, map.size, &length, &offset))
|
if (!read_length (rtpgstdepay, map.data, map.size, &length, &offset))
|
||||||
goto too_small;
|
goto too_small;
|
||||||
|
@ -254,7 +254,7 @@ read_event (GstRtpGSTDepay * rtpgstdepay, guint type,
|
||||||
|
|
||||||
gst_buffer_map (buf, &map, GST_MAP_READ);
|
gst_buffer_map (buf, &map, GST_MAP_READ);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (rtpgstdepay, "buffer size %u", map.size);
|
GST_DEBUG_OBJECT (rtpgstdepay, "buffer size %" G_GSIZE_FORMAT, map.size);
|
||||||
|
|
||||||
if (!read_length (rtpgstdepay, map.data, map.size, &length, &offset))
|
if (!read_length (rtpgstdepay, map.data, map.size, &length, &offset))
|
||||||
goto too_small;
|
goto too_small;
|
||||||
|
|
Loading…
Reference in a new issue