summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtptheoradepay.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 08:39:57 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 08:39:57 +0200
commitf9d7640bc971b7754d8ed8b187ec6db672c4ffdd (patch)
tree4f7e3a9a3ca9c82618e5eb4cb09e7b559b0d709d /gst/rtp/gstrtptheoradepay.c
parentc052906590e8a2a76f6311e8c194bb6dbe350d7f (diff)
rtptheoradepay: Fix build on macosx.
Use G_GSIZE_FORMAT instead of u.
Diffstat (limited to 'gst/rtp/gstrtptheoradepay.c')
-rw-r--r--gst/rtp/gstrtptheoradepay.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c
index 7a902d56..53a4abfb 100644
--- a/gst/rtp/gstrtptheoradepay.c
+++ b/gst/rtp/gstrtptheoradepay.c
@@ -147,11 +147,12 @@ gst_rtp_theora_depay_parse_configuration (GstRtpTheoraDepay * rtptheoradepay,
/* deserialize base64 to buffer */
size = strlen (configuration);
- GST_DEBUG_OBJECT (rtptheoradepay, "base64 config size %u", size);
+ GST_DEBUG_OBJECT (rtptheoradepay, "base64 config size %" G_GSIZE_FORMAT,
+ size);
data = g_base64_decode (configuration, &size);
- GST_DEBUG_OBJECT (rtptheoradepay, "config size %u", size);
+ GST_DEBUG_OBJECT (rtptheoradepay, "config size %" G_GSIZE_FORMAT, size);
/* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
* | Number of packed headers |
@@ -216,7 +217,8 @@ gst_rtp_theora_depay_parse_configuration (GstRtpTheoraDepay * rtptheoradepay,
data += 6;
GST_DEBUG_OBJECT (rtptheoradepay,
- "header %d, ident 0x%08x, length %u, left %u", i, ident, length, size);
+ "header %d, ident 0x%08x, length %u, left %" G_GSIZE_FORMAT, i, ident,
+ length, size);
if (size < length)
goto too_small;