rtpvp8: Fix unitialized variable

Makes macosx compiler happy.
This commit is contained in:
Edward Hervey 2011-03-04 11:59:44 +01:00
parent a4b4eeb86c
commit 605352f118

View file

@ -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;