summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_wasapi.c
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2014-11-28 09:53:38 -0800
committerKevin Mitchell <kevmitch@gmail.com>2014-11-28 10:48:07 -0800
commitd0c37f07313db96e06926f275b23717fe31cc4db (patch)
tree56f8f22fe75d581815b9a0b1eb3efc86fe510683 /audio/out/ao_wasapi.c
parentecb491fd958689632191d57acf3f9cfba9014cc7 (diff)
downloadmpv-d0c37f07313db96e06926f275b23717fe31cc4db.tar.bz2
mpv-d0c37f07313db96e06926f275b23717fe31cc4db.tar.xz
ao/wasapi: more debugging messages
Diffstat (limited to 'audio/out/ao_wasapi.c')
-rw-r--r--audio/out/ao_wasapi.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/audio/out/ao_wasapi.c b/audio/out/ao_wasapi.c
index dd862d27b7..8477a9cb51 100644
--- a/audio/out/ao_wasapi.c
+++ b/audio/out/ao_wasapi.c
@@ -142,6 +142,7 @@ static DWORD __stdcall ThreadLoop(void *lpParameter)
QS_POSTMESSAGE | QS_SENDMESSAGE);
switch (waitstatus) {
case WAIT_OBJECT_0: /*shutdown*/
+ MP_DBG(ao, "Thread shutdown\n");
thread_ret = 0;
goto exit_label;
case (WAIT_OBJECT_0 + 1): /* feed */
@@ -152,6 +153,7 @@ static DWORD __stdcall ThreadLoop(void *lpParameter)
SetEvent(state->hFeedDone);
break;
case (WAIT_OBJECT_0 + 3): /* messages to dispatch (COM marshalling) */
+ MP_DBG(ao, "Dispatch\n");
wasapi_dispatch();
break;
default:
@@ -164,6 +166,7 @@ exit_label:
wasapi_thread_uninit(ao);
CoUninitialize();
+ MP_DBG(ao, "Thread return %u\n", (unsigned)thread_ret);
return thread_ret;
}
@@ -186,7 +189,7 @@ static void uninit(struct ao *ao)
SetEvent(state->hUninit);
/* wait up to 10 seconds */
if (WaitForSingleObject(state->threadLoop, 10000) == WAIT_TIMEOUT){
- MP_ERR(ao, "Audio loop thread refuses to abort");
+ MP_ERR(ao, "Audio loop thread refuses to abort\n");
return;
}
if (state->VistaBlob.hAvrt)
@@ -201,8 +204,10 @@ static int init(struct ao *ao)
ao->format = af_fmt_from_planar(ao->format);
struct mp_chmap_sel sel = {0};
mp_chmap_sel_add_waveext(&sel);
- if (!ao_chmap_sel_adjust(ao, &sel, &ao->channels))
+ if (!ao_chmap_sel_adjust(ao, &sel, &ao->channels)) {
+ MP_ERR(ao, "Error adjusting channel map to waveext channel order\n");
return -1;
+ }
struct wasapi_state *state = (struct wasapi_state *)ao->priv;
state->log = ao->log;
wasapi_fill_VistaBlob(state);