mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
rtp: Fix unitialized variables on macosx
This commit is contained in:
parent
74360c22be
commit
4decc3aaea
1 changed files with 2 additions and 2 deletions
|
@ -170,8 +170,8 @@ gst_rtp_mp4a_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
|
||||||
guint8 *data;
|
guint8 *data;
|
||||||
guint size;
|
guint size;
|
||||||
gint i;
|
gint i;
|
||||||
guint32 rate;
|
guint32 rate = 0;
|
||||||
guint8 obj_type, sr_idx, channels;
|
guint8 obj_type = 0, sr_idx = 0, channels = 0;
|
||||||
GstBitReader br;
|
GstBitReader br;
|
||||||
|
|
||||||
buffer = gst_value_get_buffer (&v);
|
buffer = gst_value_get_buffer (&v);
|
||||||
|
|
Loading…
Reference in a new issue