From ec27d573f492f30c1111678273d56f922330fdcd Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 26 Oct 2015 15:52:08 +0100 Subject: audio: always log channel maps before determining final map Until now, this was done only in debug verbosity, while some AOs logged equivalent information in verbose mode. Clean this up. --- audio/out/ao_alsa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio/out/ao_alsa.c') diff --git a/audio/out/ao_alsa.c b/audio/out/ao_alsa.c index d1afab2389..2b3e8e0658 100644 --- a/audio/out/ao_alsa.c +++ b/audio/out/ao_alsa.c @@ -328,9 +328,9 @@ static bool query_chmaps(struct ao *ao, struct mp_chmap *chmap) if (mp_chmap_is_valid(&entry)) { if (maps[i]->type == SND_CHMAP_TYPE_VAR) mp_chmap_reorder_norm(&entry); - MP_VERBOSE(ao, "Got supported channel map: %s (type %s)\n", - mp_chmap_to_str(&entry), - snd_pcm_chmap_type_name(maps[i]->type)); + MP_DBG(ao, "Got supported channel map: %s (type %s)\n", + mp_chmap_to_str(&entry), + snd_pcm_chmap_type_name(maps[i]->type)); mp_chmap_sel_add_map(&chmap_sel, &entry); } else { char tmp[128]; -- cgit v1.2.3