summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_alsa.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-10-26 15:52:08 +0100
committerwm4 <wm4@nowhere>2015-10-26 15:52:08 +0100
commitec27d573f492f30c1111678273d56f922330fdcd (patch)
tree916878a99712de58e3e012d5536311340de8a97d /audio/out/ao_alsa.c
parent72d3c5ef00a71f4620279e0883c86894f145939d (diff)
downloadmpv-ec27d573f492f30c1111678273d56f922330fdcd.tar.bz2
mpv-ec27d573f492f30c1111678273d56f922330fdcd.tar.xz
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.
Diffstat (limited to 'audio/out/ao_alsa.c')
-rw-r--r--audio/out/ao_alsa.c6
1 files changed, 3 insertions, 3 deletions
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];