mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/rtp/gstrtpg729pay.c: Fix compiler warning about printf formatting.
Original commit message from CVS: * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer): Fix compiler warning about printf formatting.
This commit is contained in:
parent
c71fe3f75d
commit
5bb87818b2
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-11-12 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
|
||||
Fix compiler warning about printf formatting.
|
||||
|
||||
2008-11-12 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/qtdemux/qtdemux.h (struct _GstQTDemux):
|
||||
|
|
|
@ -173,8 +173,8 @@ gst_rtp_g729_pay_handle_buffer (GstBaseRTPPayload * payload, GstBuffer * buf)
|
|||
(int) (ptime_ms / G729_FRAME_DURATION_MS);
|
||||
|
||||
if (maxptime_octets < G729_FRAME_SIZE) {
|
||||
GST_WARNING_OBJECT (basertpaudiopayload, "Given ptime %d is smaller than"
|
||||
" minimum %d ns, overwriting to minimum",
|
||||
GST_WARNING_OBJECT (basertpaudiopayload, "Given ptime %" G_GINT64_FORMAT
|
||||
" is smaller than minimum %d ns, overwriting to minimum",
|
||||
payload->max_ptime, G729_FRAME_DURATION_MS);
|
||||
maxptime_octets = G729_FRAME_SIZE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue