mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 14:32:31 +00:00
dtmf: fix warnings in macosx snow leopard
This commit is contained in:
parent
dac26cb18f
commit
093006d432
1 changed files with 3 additions and 2 deletions
|
@ -512,7 +512,7 @@ gst_rtp_dtmf_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (depayload, "new previous duration : %d - new duration : %d"
|
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,
|
||||||
(rtpdtmfdepay->previous_duration - dtmf_payload.duration),
|
(rtpdtmfdepay->previous_duration - dtmf_payload.duration),
|
||||||
depayload->clock_rate, GST_BUFFER_TIMESTAMP (buf));
|
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_BUFFER_OFFSET_END (outbuf) = rtpdtmfdepay->previous_duration *
|
||||||
GST_SECOND / depayload->clock_rate;
|
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)));
|
GST_BUFFER_TIMESTAMP (buf), GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue