mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
sbc: Assign variables after declarations
This commit is contained in:
parent
7ae0c70682
commit
57f6f2655d
1 changed files with 1 additions and 1 deletions
|
@ -102,9 +102,9 @@ gst_sbc_get_mode_from_list (const GValue * list, gint channels)
|
|||
const GValue *value;
|
||||
const gchar *aux;
|
||||
gboolean joint, stereo, dual, mono;
|
||||
guint size = gst_value_list_get_size (list);
|
||||
|
||||
joint = stereo = dual = mono = FALSE;
|
||||
guint size = gst_value_list_get_size (list);
|
||||
|
||||
for (i = 0; i < size; i++) {
|
||||
value = gst_value_list_get_value (list, i);
|
||||
|
|
Loading…
Reference in a new issue