Revert "opensles: uncomment debug message"

This reverts commit 72999af231.

This module seems to work fine, let developers enable this verbose
message again if they wish.
This commit is contained in:
Rafaël Carré 2013-10-29 12:44:09 +01:00
parent d35df2cf43
commit 7785168806

View File

@ -168,8 +168,8 @@ static int TimeGet(audio_output_t* aout, mtime_t* restrict drift)
*drift = (CLOCK_FREQ * OPENSLES_BUFLEN * st.count / 1000)
+ sys->samples * CLOCK_FREQ / sys->rate;
msg_Dbg(aout, "latency %"PRId64" ms, %d/%d buffers", *drift / 1000,
(int)st.count, OPENSLES_BUFFERS);
/* msg_Dbg(aout, "latency %"PRId64" ms, %d/%d buffers", *drift / 1000,
(int)st.count, OPENSLES_BUFFERS); */
return 0;
}