diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-10-03 16:34:25 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-10-03 16:34:25 +0000 |
commit | 66fe9a462c5093003a0b65239b54b44f6395b342 (patch) | |
tree | 155db09c46bf9c3d2e401688045894dbc266f278 | |
parent | 5d29f5188fd46287fed3f75f2c21238b7594b2d7 (diff) |
Speed up decoding on Gigabeat F/X and S by lowering BLOCKS_PER_LOOP. This helps keeping things in the (L1) cache (except for -c5000).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18700 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/codecs/ape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/ape.c b/apps/codecs/ape.c index cbbed6cdd6..f0d15ee67b 100644 --- a/apps/codecs/ape.c +++ b/apps/codecs/ape.c @@ -25,7 +25,7 @@ CODEC_HEADER -#define BLOCKS_PER_LOOP 4608 +#define BLOCKS_PER_LOOP 1024 #define MAX_CHANNELS 2 #define MAX_BYTESPERSAMPLE 3 |