gst/rtpmanager/gstrtpjitterbuffer.c: Initialize return value to fix compiler warning about uninitialized variable.
Original commit message from CVS: * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_chain_rtcp): Initialize return value to fix compiler warning about uninitialized variable.
This commit is contained in:
parent
c40e7aac04
commit
0803391ab1
@ -1,3 +1,10 @@
|
|||||||
|
2008-11-20 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
|
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
||||||
|
(gst_rtp_jitter_buffer_chain_rtcp):
|
||||||
|
Initialize return value to fix compiler warning about uninitialized
|
||||||
|
variable.
|
||||||
|
|
||||||
2008-11-19 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-11-19 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
||||||
|
@ -1538,7 +1538,7 @@ gst_rtp_jitter_buffer_chain_rtcp (GstPad * pad, GstBuffer * buffer)
|
|||||||
{
|
{
|
||||||
GstRtpJitterBuffer *jitterbuffer;
|
GstRtpJitterBuffer *jitterbuffer;
|
||||||
GstRtpJitterBufferPrivate *priv;
|
GstRtpJitterBufferPrivate *priv;
|
||||||
GstFlowReturn ret;
|
GstFlowReturn ret = GST_FLOW_OK;
|
||||||
guint64 base_rtptime, timestamp;
|
guint64 base_rtptime, timestamp;
|
||||||
guint32 clock_rate;
|
guint32 clock_rate;
|
||||||
guint64 last_rtptime;
|
guint64 last_rtptime;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user