mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
rtpvp8: Fix unitialized variable
Makes macosx compiler happy.
This commit is contained in:
parent
a4b4eeb86c
commit
605352f118
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;
|
||||
guint32 header_size;
|
||||
guint8 version;
|
||||
guint8 tmp8;
|
||||
guint8 tmp8 = 0;
|
||||
guint8 *data;
|
||||
guint8 partitions;
|
||||
|
||||
|
|
Loading…
Reference in a new issue