mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
rtpvp8: Fix unitialized variable
Makes macosx compiler happy.
This commit is contained in:
parent
6ed6318076
commit
74a1a704bf
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ gst_rtp_vp8_pay_parse_frame (GstRtpVP8Pay * self, GstBuffer * buffer)
|
||||||
gboolean keyframe;
|
gboolean keyframe;
|
||||||
guint32 header_size;
|
guint32 header_size;
|
||||||
guint8 version;
|
guint8 version;
|
||||||
guint8 tmp8;
|
guint8 tmp8 = 0;
|
||||||
guint8 *data;
|
guint8 *data;
|
||||||
guint8 partitions;
|
guint8 partitions;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue