rtp: fix printf format of some debug messages

This commit is contained in:
Tim-Philipp Müller 2010-05-01 11:25:26 +01:00
parent fa4b2938bc
commit c1d24699f5
2 changed files with 4 additions and 6 deletions

View file

@ -137,7 +137,7 @@ gst_rtp_theora_depay_parse_configuration (GstRtpTheoraDepay * rtptheoradepay,
data = GST_BUFFER_DATA (confbuf); data = GST_BUFFER_DATA (confbuf);
size = GST_BUFFER_SIZE (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 | * | Number of packed headers |
@ -202,8 +202,7 @@ gst_rtp_theora_depay_parse_configuration (GstRtpTheoraDepay * rtptheoradepay,
data += 6; data += 6;
GST_DEBUG_OBJECT (rtptheoradepay, GST_DEBUG_OBJECT (rtptheoradepay,
"header %d, ident 0x%08x, length %u, left %" G_GSIZE_FORMAT, i, ident, "header %d, ident 0x%08x, length %u, left %u", i, ident, length, size);
length, size);
/* FIXME check if we already got this ident */ /* FIXME check if we already got this ident */

View file

@ -167,7 +167,7 @@ gst_rtp_vorbis_depay_parse_configuration (GstRtpVorbisDepay * rtpvorbisdepay,
data = GST_BUFFER_DATA (confbuf); data = GST_BUFFER_DATA (confbuf);
size = GST_BUFFER_SIZE (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 | * | Number of packed headers |
@ -234,8 +234,7 @@ gst_rtp_vorbis_depay_parse_configuration (GstRtpVorbisDepay * rtpvorbisdepay,
offset += 6; offset += 6;
GST_DEBUG_OBJECT (rtpvorbisdepay, GST_DEBUG_OBJECT (rtpvorbisdepay,
"header %d, ident 0x%08x, length %u, left %" G_GSIZE_FORMAT, i, ident, "header %d, ident 0x%08x, length %u, left %u", i, ident, length, size);
length, size);
/* FIXME check if we already got this ident */ /* FIXME check if we already got this ident */