summaryrefslogtreecommitdiffstats
path: root/audio/chmap_sel.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/chmap_sel.c')
-rw-r--r--audio/chmap_sel.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/audio/chmap_sel.c b/audio/chmap_sel.c
index 81354422d9..1c5b7919eb 100644
--- a/audio/chmap_sel.c
+++ b/audio/chmap_sel.c
@@ -184,12 +184,11 @@ bool mp_chmap_sel_adjust(const struct mp_chmap_sel *s, struct mp_chmap *map)
}
}
// Fallback to mono/stereo as last resort
- if (map->num == 1) {
- *map = (struct mp_chmap) MP_CHMAP_INIT_MONO;
- } else if (map->num >= 2) {
- *map = (struct mp_chmap) MP_CHMAP_INIT_STEREO;
- }
- if (test_layout(s, map))
+ *map = (struct mp_chmap) MP_CHMAP_INIT_MONO;
+ if (map->num == 1 && test_layout(s, map))
+ return true;
+ *map = (struct mp_chmap) MP_CHMAP_INIT_STEREO;
+ if (map->num >= 2 && test_layout(s, map))
return true;
*map = (struct mp_chmap) {0};
return false;