summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-05-05 14:52:07 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-05-05 14:52:07 +0000
commit405e90eecfabc067d7e8e97871697a1c20f0d41f (patch)
tree62ebf2ccb8b6ef5a2fe639d2f15861ce66aa3092 /apps
parent2b8cbe9b94039ce5638f0e6c49cb32dcb1c0b37f (diff)
downloadrockbox-405e90eecfabc067d7e8e97871697a1c20f0d41f.tar.gz
rockbox-405e90eecfabc067d7e8e97871697a1c20f0d41f.zip
PCM buffer muting doesn't seem benificial for wm8978 so turn it off.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17384 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/pcmbuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c
index 03a5752e9d..6aa01a8a13 100644
--- a/apps/pcmbuf.c
+++ b/apps/pcmbuf.c
@@ -39,7 +39,8 @@
#include "thread.h"
/* Define PCMBUF_MUTING if the codec requires muting to prevent pops */
-#if !defined(HAVE_UDA1380) && !defined(HAVE_TLV320) && !defined(HAVE_AS3514)
+#if !defined(HAVE_UDA1380) && !defined(HAVE_TLV320) && !defined(HAVE_AS3514) \
+ && !defined(HAVE_WM8978)
#define PCMBUF_MUTING
#endif