diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-02-08 18:58:38 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-02-08 18:58:38 +0100 |
commit | 78d9134d637e439bf82a7103836233703972d017 (patch) | |
tree | 228ba536ffcd7d437b6754fab1372872667ae068 /ext/directfb/dfbvideosink.c | |
parent | 5c22b7f4a3a302acba7cceb0e8cd0689ef4db27e (diff) | |
download | gstreamer-plugins-bad-78d9134d637e439bf82a7103836233703972d017.tar.gz |
dfbvideosink: Fix unitialized variable compiler warning
Diffstat (limited to 'ext/directfb/dfbvideosink.c')
-rw-r--r-- | ext/directfb/dfbvideosink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/directfb/dfbvideosink.c b/ext/directfb/dfbvideosink.c index 5daec12fd..e2f8e8d61 100644 --- a/ext/directfb/dfbvideosink.c +++ b/ext/directfb/dfbvideosink.c @@ -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); |