summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtpvp8pay.c
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2011-03-04 11:59:44 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-11-01 20:53:47 +0000
commit74a1a704bf2726260ffbf2686ef8cceb184a6f1a (patch)
tree01321f6f9a77bc7d9b575b87f2aa3f2b4ad6978c /gst/rtp/gstrtpvp8pay.c
parent6ed6318076a82f0a48bc56082ca675b378906226 (diff)
rtpvp8: Fix unitialized variable
Makes macosx compiler happy.
Diffstat (limited to 'gst/rtp/gstrtpvp8pay.c')
-rw-r--r--gst/rtp/gstrtpvp8pay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpvp8pay.c b/gst/rtp/gstrtpvp8pay.c
index 0ea577713..b54ec2898 100644
--- a/gst/rtp/gstrtpvp8pay.c
+++ b/gst/rtp/gstrtpvp8pay.c
@@ -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;