summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_wasapi_utils.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_wasapi_utils.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_wasapi_utils.c')
-rwxr-xr-xaudio/out/ao_wasapi_utils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/audio/out/ao_wasapi_utils.c b/audio/out/ao_wasapi_utils.c
index fd65cc82eb..1f885004a9 100755
--- a/audio/out/ao_wasapi_utils.c
+++ b/audio/out/ao_wasapi_utils.c
@@ -486,10 +486,8 @@ static bool search_channels(struct ao *ao, WAVEFORMATEXTENSIBLE *wformat)
}
} else {
change_waveformat_channels(wformat, &entry);
- if (try_format_exclusive(ao, wformat)) {
+ if (try_format_exclusive(ao, wformat))
mp_chmap_sel_add_map(&chmap_sel, &entry);
- MP_VERBOSE(ao, "%s is supported\n", mp_chmap_to_str(&entry));
- }
}
}