Fix logf behavior in voice_thread.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25810 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
054ddfd0c6
commit
09cd188596
1 changed files with 5 additions and 2 deletions
|
@ -20,7 +20,6 @@
|
|||
****************************************************************************/
|
||||
#include "system.h"
|
||||
#include "thread.h"
|
||||
#include "logf.h"
|
||||
#include "voice_thread.h"
|
||||
#include "talk.h"
|
||||
#include "dsp.h"
|
||||
|
@ -29,10 +28,14 @@
|
|||
#include "pcmbuf.h"
|
||||
#include "codecs/libspeex/speex/speex.h"
|
||||
|
||||
/* Define any of these as "1" to log regular and/or timeout messages */
|
||||
/* Define any of these as "1" and uncomment the LOGF_ENABLE line to log
|
||||
regular and/or timeout messages */
|
||||
#define VOICE_LOGQUEUES 0
|
||||
#define VOICE_LOGQUEUES_SYS_TIMEOUT 0
|
||||
|
||||
/*#define LOGF_ENABLE*/
|
||||
#include "logf.h"
|
||||
|
||||
#if VOICE_LOGQUEUES
|
||||
#define LOGFQUEUE logf
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue