summaryrefslogtreecommitdiffstats
path: root/apps/playback.h
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2007-10-25 21:27:45 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2007-10-25 21:27:45 +0000
commit3e3c43c74712e02226f157ecc325ff3302417c6f (patch)
tree9739339d7815501060e87315739881c588f05a9f /apps/playback.h
parentccbe242453112054e5219615e112b0d1cb518063 (diff)
downloadrockbox-3e3c43c74712e02226f157ecc325ff3302417c6f.tar.gz
rockbox-3e3c43c74712e02226f157ecc325ff3302417c6f.zip
Finally commit Metadata on Buffer!
buffering.c and buffering.h implement the new buffering API. playback.c is translated to that API. For more information about the whole concept, see http://www.rockbox.org/wiki/MetadataOnBuffer. There should be no major visible changes, but most existing bugs remain (though fixing them should be easier now that playback.c is a bit less complex) and there probably will be new ones. Please report any problem! Next step is to adapt cuesheet support, which is partly disabled here, and of course fix as much bugs as possible. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15306 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.h')
-rw-r--r--apps/playback.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.h b/apps/playback.h
index 43cdd5972f..9088af9b6e 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -32,9 +32,9 @@
#define CODEC_SET_AUDIOBUF_WATERMARK 4
#if MEM > 1
-#define MAX_TRACK 32
+#define MAX_TRACK 128
#else
-#define MAX_TRACK 8
+#define MAX_TRACK 32
#endif
#define MAX_TRACK_MASK (MAX_TRACK-1)