summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2013-03-30 09:52:45 +0100
committerJosep Torra <n770galaxy@gmail.com>2013-03-30 09:52:45 +0100
commit030cf658e688dedac3f1f50338786d90c7d80d94 (patch)
treeeba892564cd8a9b6506a315cd007d6b496ae0612 /gst
parentce9b6e5afb52eb04802aa690a8868cac4eb475ab (diff)
downloadgstreamer-plugins-bad-030cf658e688dedac3f1f50338786d90c7d80d94.tar.gz
mpeg4videoparser: Fix a compiler warning about uninitialised variable use
Diffstat (limited to 'gst')
-rw-r--r--gst/videoparsers/gstmpeg4videoparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videoparsers/gstmpeg4videoparse.c b/gst/videoparsers/gstmpeg4videoparse.c
index 88fd64b39..19ae48c7e 100644
--- a/gst/videoparsers/gstmpeg4videoparse.c
+++ b/gst/videoparsers/gstmpeg4videoparse.c
@@ -389,7 +389,7 @@ gst_mpeg4vparse_handle_frame (GstBaseParse * parse,
gsize size;
gint off = 0;
gboolean ret = FALSE;
- guint framesize;
+ guint framesize = 0;
gst_buffer_map (frame->buffer, &map, GST_MAP_READ);
data = map.data;