diff options
-rw-r--r-- | audio/chmap_sel.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/chmap_sel.c b/audio/chmap_sel.c index 1c5b7919eb..fe0b9598a0 100644 --- a/audio/chmap_sel.c +++ b/audio/chmap_sel.c @@ -184,11 +184,11 @@ bool mp_chmap_sel_adjust(const struct mp_chmap_sel *s, struct mp_chmap *map) } } // Fallback to mono/stereo as last resort - *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)) + if (test_layout(s, map)) + return true; + *map = (struct mp_chmap) MP_CHMAP_INIT_MONO; + if (test_layout(s, map)) return true; *map = (struct mp_chmap) {0}; return false; |