audio: lower "Disabling multichannel output." warning to verbose

Not sure why it was a warning in the first place.
This commit is contained in:
wm4 2017-04-02 17:23:11 +02:00
parent 6100a7d75f
commit 6b9d3f4f7b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}