mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
rtpjitterbuffer: fix compiler warning
gstrtpjitterbuffer.c: In function 'gst_rtp_jitter_buffer_loop': gstrtpjitterbuffer.c:2978:3: error: 'result' may be used uninitialized in this function while (result == GST_FLOW_OK); ^
This commit is contained in:
parent
6b13fd56ea
commit
1d7f5c7a83
1 changed files with 1 additions and 1 deletions
|
@ -2429,7 +2429,7 @@ static GstFlowReturn
|
|||
pop_and_push_next (GstRtpJitterBuffer * jitterbuffer, guint seqnum)
|
||||
{
|
||||
GstRtpJitterBufferPrivate *priv = jitterbuffer->priv;
|
||||
GstFlowReturn result;
|
||||
GstFlowReturn result = GST_FLOW_OK;
|
||||
RTPJitterBufferItem *item;
|
||||
GstBuffer *outbuf = NULL;
|
||||
GstEvent *outevent = NULL;
|
||||
|
|
Loading…
Reference in a new issue