videoparse: initialize update_size to FALSE when updating info
authorAurélien Zanelli <aurelien.zanelli@parrot.com>
Thu, 28 Jan 2016 17:20:44 +0000 (18:20 +0100)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Thu, 28 Jan 2016 19:48:11 +0000 (14:48 -0500)
Otherwise, behavior will be undefined when no strides/offsets are set
and it will likely go wrong.

https://bugzilla.gnome.org/show_bug.cgi?id=760270

gst/rawparse/gstvideoparse.c

index 717b21afaff20b4f0b1c54c464b331092186d8bc..7b5e0371982004c690e0a1d3b31fae1484da1c05 100644 (file)
@@ -434,7 +434,7 @@ gst_video_parse_update_info (GstVideoParse * vp)
   gint fps_n, fps_d;
   gint framesize;
   guint i;
-  gboolean update_size;
+  gboolean update_size = FALSE;
 
   gst_raw_parse_get_fps (GST_RAW_PARSE (vp), &fps_n, &fps_d);