From c1d24699f526b15920e8a0569ebe4d04dcb906e0 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Sat, 1 May 2010 11:25:26 +0100 Subject: rtp: fix printf format of some debug messages --- gst/rtp/gstrtptheoradepay.c | 5 ++--- gst/rtp/gstrtpvorbisdepay.c | 5 ++--- 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 */ -- cgit v1.2.3