From 28910e7e17786607d0286f2901d77a83d55a7f2c Mon Sep 17 00:00:00 2001 From: Tomasz Malesinski Date: Sat, 12 Aug 2006 23:01:52 +0000 Subject: Various lower limits and sizes for targets with 1MB of RAM (Iriver iFP7xx). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10556 a1c6a512-1295-4272-9138-f99709370657 --- apps/pcmbuf.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/pcmbuf.h') diff --git a/apps/pcmbuf.h b/apps/pcmbuf.h index 15633d5214..18a6894fee 100644 --- a/apps/pcmbuf.h +++ b/apps/pcmbuf.h @@ -19,12 +19,18 @@ #ifndef PCMBUF_H #define PCMBUF_H +#if MEMORYSIZE > 1 #define PCMBUF_TARGET_CHUNK 32768 /* This is the target fill size of chunks on the pcm buffer */ #define PCMBUF_MINAVG_CHUNK 24576 /* This is the minimum average size of chunks on the pcm buffer (or we run out of buffer descriptors, which is non-fatal) */ +#else +#define PCMBUF_TARGET_CHUNK 16384 +#define PCMBUF_MINAVG_CHUNK 12288 +#endif + #define PCMBUF_MIN_CHUNK 4096 /* We try to never feed a chunk smaller than this to the DMA */ #define PCMBUF_MIX_CHUNK 8192 /* This is the maximum size of one packet -- cgit v1.2.3