summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2009-10-11 11:35:23 +0200
committerJosep Torra <n770galaxy@gmail.com>2009-10-11 11:35:23 +0200
commit093006d4327808acd087172a5524bdd892c8bc9f (patch)
treec42d37309c3dd43013c78a683dbddec089e3befc /gst
parentdac26cb18fb14dfa350fd6bb0a3f59ec284f1e06 (diff)
dtmf: fix warnings in macosx snow leopard
Diffstat (limited to 'gst')
-rw-r--r--gst/dtmf/gstrtpdtmfdepay.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/dtmf/gstrtpdtmfdepay.c b/gst/dtmf/gstrtpdtmfdepay.c
index 85e7d1c27..7cdfabfe7 100644
--- a/gst/dtmf/gstrtpdtmfdepay.c
+++ b/gst/dtmf/gstrtpdtmfdepay.c
@@ -512,7 +512,7 @@ gst_rtp_dtmf_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
}
GST_DEBUG_OBJECT (depayload, "new previous duration : %d - new duration : %d"
- " - diff : %d - clock rate : %d - timestamp : %llu",
+ " - diff : %d - clock rate : %d - timestamp : %" G_GUINT64_FORMAT,
rtpdtmfdepay->previous_duration, dtmf_payload.duration,
(rtpdtmfdepay->previous_duration - dtmf_payload.duration),
depayload->clock_rate, GST_BUFFER_TIMESTAMP (buf));
@@ -532,7 +532,8 @@ gst_rtp_dtmf_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
GST_BUFFER_OFFSET_END (outbuf) = rtpdtmfdepay->previous_duration *
GST_SECOND / depayload->clock_rate;
- GST_DEBUG_OBJECT (depayload, "timestamp : %llu - time %" GST_TIME_FORMAT,
+ GST_DEBUG_OBJECT (depayload,
+ "timestamp : %" G_GUINT64_FORMAT " - time %" GST_TIME_FORMAT,
GST_BUFFER_TIMESTAMP (buf), GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
}