rtpvp8: Fix unitialized variable
authorEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 4 Mar 2011 10:59:44 +0000 (11:59 +0100)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 4 Mar 2011 11:15:32 +0000 (12:15 +0100)
Makes macosx compiler happy.

gst/rtpvp8/gstrtpvp8pay.c

index 0ea5777..b54ec28 100644 (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;