mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
basesink: Initialize uninitialized variable
This commit is contained in:
parent
67fab5eaa5
commit
925bdaa836
1 changed files with 1 additions and 1 deletions
|
@ -3261,7 +3261,7 @@ gst_base_sink_chain_unlocked (GstBaseSink * basesink, GstPad * pad,
|
|||
|
||||
if (bclass->prepare || bclass->prepare_list) {
|
||||
gboolean late = FALSE;
|
||||
gboolean do_sync = TRUE, stepped = FALSE, step_end, syncable = TRUE;
|
||||
gboolean do_sync = TRUE, stepped = FALSE, step_end = FALSE, syncable = TRUE;
|
||||
GstClockTime sstart, sstop, rstart, rstop;
|
||||
GstStepInfo *current;
|
||||
|
||||
|
|
Loading…
Reference in a new issue