dfbvideosink: Fix unitialized variable compiler warning

This commit is contained in:
Sebastian Dröge 2014-02-08 18:58:38 +01:00
parent 5c22b7f4a3
commit 78d9134d63

View file

@ -2252,7 +2252,7 @@ gst_dfbvideosink_propose_allocation (GstBaseSink * bsink, GstQuery * query)
GstBufferPool *pool;
GstCaps *caps;
gboolean need_pool;
guint size;
guint size = 0;
dfbvideosink = GST_DFBVIDEOSINK (bsink);