From 0081f1facdce2fb1581c80d10959196930dee673 Mon Sep 17 00:00:00 2001 From: "Diogo Franco (Kovensky)" Date: Fri, 19 Jul 2013 22:55:58 -0300 Subject: 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. --- audio/out/ao_wasapi0.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/out/ao_wasapi0.c') 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) -- cgit v1.2.3