mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
gst/rtpmanager/rtpsource.c: Fix GST_DEBUG call to only have as many arguments as required by the format string. Fixes...
Original commit message from CVS: * gst/rtpmanager/rtpsource.c: (get_clock_rate): Fix GST_DEBUG call to only have as many arguments as required by the format string. Fixes a compiler warning.
This commit is contained in:
parent
b6d0b13349
commit
8ce409bd32
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-11-17 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/rtpmanager/rtpsource.c: (get_clock_rate):
|
||||||
|
Fix GST_DEBUG call to only have as many arguments as required
|
||||||
|
by the format string. Fixes a compiler warning.
|
||||||
|
|
||||||
2008-11-17 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-11-17 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
|
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
|
||||||
|
|
|
@ -734,7 +734,7 @@ get_clock_rate (RTPSource * src, guint8 payload)
|
||||||
if (src->callbacks.clock_rate)
|
if (src->callbacks.clock_rate)
|
||||||
clock_rate = src->callbacks.clock_rate (src, payload, src->user_data);
|
clock_rate = src->callbacks.clock_rate (src, payload, src->user_data);
|
||||||
|
|
||||||
GST_DEBUG ("got clock-rate %d", payload, clock_rate);
|
GST_DEBUG ("got clock-rate %d", clock_rate);
|
||||||
|
|
||||||
src->clock_rate = clock_rate;
|
src->clock_rate = clock_rate;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue