diff options
author | wm4 <wm4@nowhere> | 2017-04-02 17:23:11 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-04-02 17:23:11 +0200 |
commit | 6b9d3f4f7bcc51c9b0ec6407b5df33106b028285 (patch) | |
tree | c40612bfc1cb07df4aee886da9fa07ed1335a03a | |
parent | 6100a7d75f7233484b7e7c448728ba2138eaebb9 (diff) | |
download | mpv-6b9d3f4f7bcc51c9b0ec6407b5df33106b028285.tar.bz2 mpv-6b9d3f4f7bcc51c9b0ec6407b5df33106b028285.tar.xz |
audio: lower "Disabling multichannel output." warning to verbose
Not sure why it was a warning in the first place.
-rw-r--r-- | audio/out/ao.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao.c b/audio/out/ao.c index 32140b2b34..1c51a070b1 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -455,7 +455,7 @@ bool ao_chmap_sel_adjust2(struct ao *ao, const struct mp_chmap_sel *s, if (!mp_chmap_equals(&res, &(struct mp_chmap)MP_CHMAP_INIT_MONO) && !mp_chmap_equals(&res, &(struct mp_chmap)MP_CHMAP_INIT_STEREO)) { - MP_WARN(ao, "Disabling multichannel output.\n"); + MP_VERBOSE(ao, "Disabling multichannel output.\n"); *map = (struct mp_chmap)MP_CHMAP_INIT_STEREO; } } |