summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-05-01 11:25:26 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-05-01 11:25:26 +0100
commitc1d24699f526b15920e8a0569ebe4d04dcb906e0 (patch)
tree318d19d80dde8cc2c022b237735750a50e707d5c
parentfa4b2938bc972dd8290e714557547c194b37e468 (diff)
rtp: fix printf format of some debug messages
-rw-r--r--gst/rtp/gstrtptheoradepay.c5
-rw-r--r--gst/rtp/gstrtpvorbisdepay.c5
2 files changed, 4 insertions, 6 deletions
diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c
index a1e97490a..e86487091 100644
--- a/gst/rtp/gstrtptheoradepay.c
+++ b/gst/rtp/gstrtptheoradepay.c
@@ -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 */
diff --git a/gst/rtp/gstrtpvorbisdepay.c b/gst/rtp/gstrtpvorbisdepay.c
index 622418ce0..6738f19e4 100644
--- a/gst/rtp/gstrtpvorbisdepay.c
+++ b/gst/rtp/gstrtpvorbisdepay.c
@@ -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 */