mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
dfbvideosink: Fix unitialized variable compiler warning
This commit is contained in:
parent
5c22b7f4a3
commit
78d9134d63
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue