mpeg4videoparser: Fix a compiler warning about uninitialised variable use
This commit is contained in:
parent
ce9b6e5afb
commit
030cf658e6
@ -389,7 +389,7 @@ gst_mpeg4vparse_handle_frame (GstBaseParse * parse,
|
|||||||
gsize size;
|
gsize size;
|
||||||
gint off = 0;
|
gint off = 0;
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
guint framesize;
|
guint framesize = 0;
|
||||||
|
|
||||||
gst_buffer_map (frame->buffer, &map, GST_MAP_READ);
|
gst_buffer_map (frame->buffer, &map, GST_MAP_READ);
|
||||||
data = map.data;
|
data = map.data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user