rtpjitterbuffer: Initialize variables

Avoid use of uninitialized variable
Fixing MSVC warning
gstrtpjitterbuffer.c(4733) : warning C4700: uninitialized local variable 'have_sdes' used

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2315>
This commit is contained in:
Seungha Yang 2022-04-28 00:58:30 +09:00 committed by GStreamer Marge Bot
parent 245e5e3dfd
commit 6619f1611f

View file

@ -4700,7 +4700,7 @@ gst_rtp_jitter_buffer_chain_rtcp (GstPad * pad, GstObject * parent,
guint32 rtptime;
GstRTCPBuffer rtcp = { NULL, };
gchar *cname = NULL;
gboolean have_sr, have_sdes;
gboolean have_sr = FALSE, have_sdes = FALSE;
gboolean more;
jitterbuffer = GST_RTP_JITTER_BUFFER (parent);