summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-19 22:55:58 -0300
committerwm4 <wm4@nowhere>2013-07-22 02:42:37 +0200
commit0081f1facdce2fb1581c80d10959196930dee673 (patch)
tree18ac80e47ad809c92a8e44b0b9e42782f9caa6ef
parentdf1922babe66064e1c6122b8ff5696be3c998530 (diff)
downloadmpv-0081f1facdce2fb1581c80d10959196930dee673.tar.bz2
mpv-0081f1facdce2fb1581c80d10959196930dee673.tar.xz
ao_wasapi0: Demote "negotiation failed" message to MSGL_V
Could spam the console with what may be harmless in some cases. We already complain loudly if we're stuck checking this too many times.
-rw-r--r--audio/out/ao_wasapi0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao_wasapi0.c b/audio/out/ao_wasapi0.c
index 5f7a3a7c76..df851122c6 100644
--- a/audio/out/ao_wasapi0.c
+++ b/audio/out/ao_wasapi0.c
@@ -511,8 +511,8 @@ reinit:
if (hr == AUDCLNT_E_BUFFER_SIZE_NOT_ALIGNED) {
EnterCriticalSection(&state->print_lock);
mp_msg(
- MSGT_AO, MSGL_ERR,
- "IAudioClient::Initialize negotiation failed with %s, used %lld * 100ns\n",
+ MSGT_AO, MSGL_V,
+ "ao-wasapi: IAudioClient::Initialize negotiation failed with %s, used %lld * 100ns\n",
explain_err(hr), state->defaultRequestedDuration);
LeaveCriticalSection(&state->print_lock);
if (offset > 10.0)