mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
rtp: fix printf format of some debug messages
This commit is contained in:
parent
fa4b2938bc
commit
c1d24699f5
2 changed files with 4 additions and 6 deletions
|
@ -137,7 +137,7 @@ gst_rtp_theora_depay_parse_configuration (GstRtpTheoraDepay * rtptheoradepay,
|
|||
data = GST_BUFFER_DATA (confbuf);
|
||||
size = GST_BUFFER_SIZE (confbuf);
|
||||
|
||||
GST_DEBUG_OBJECT (rtptheoradepay, "config size %" G_GSIZE_FORMAT, size);
|
||||
GST_DEBUG_OBJECT (rtptheoradepay, "config size %u", size);
|
||||
|
||||
/* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
* | Number of packed headers |
|
||||
|
@ -202,8 +202,7 @@ gst_rtp_theora_depay_parse_configuration (GstRtpTheoraDepay * rtptheoradepay,
|
|||
data += 6;
|
||||
|
||||
GST_DEBUG_OBJECT (rtptheoradepay,
|
||||
"header %d, ident 0x%08x, length %u, left %" G_GSIZE_FORMAT, i, ident,
|
||||
length, size);
|
||||
"header %d, ident 0x%08x, length %u, left %u", i, ident, length, size);
|
||||
|
||||
/* FIXME check if we already got this ident */
|
||||
|
||||
|
|
|
@ -167,7 +167,7 @@ gst_rtp_vorbis_depay_parse_configuration (GstRtpVorbisDepay * rtpvorbisdepay,
|
|||
data = GST_BUFFER_DATA (confbuf);
|
||||
size = GST_BUFFER_SIZE (confbuf);
|
||||
|
||||
GST_DEBUG_OBJECT (rtpvorbisdepay, "config size %" G_GSIZE_FORMAT, size);
|
||||
GST_DEBUG_OBJECT (rtpvorbisdepay, "config size %u", size);
|
||||
|
||||
/* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
* | Number of packed headers |
|
||||
|
@ -234,8 +234,7 @@ gst_rtp_vorbis_depay_parse_configuration (GstRtpVorbisDepay * rtpvorbisdepay,
|
|||
offset += 6;
|
||||
|
||||
GST_DEBUG_OBJECT (rtpvorbisdepay,
|
||||
"header %d, ident 0x%08x, length %u, left %" G_GSIZE_FORMAT, i, ident,
|
||||
length, size);
|
||||
"header %d, ident 0x%08x, length %u, left %u", i, ident, length, size);
|
||||
|
||||
/* FIXME check if we already got this ident */
|
||||
|
||||
|
|
Loading…
Reference in a new issue