summaryrefslogtreecommitdiff
path: root/firmware/export
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 /firmware/export
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 'firmware/export')
-rw-r--r--firmware/export/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h
index 867c587794..94c228b9ef 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -43,7 +43,7 @@
43#define PRIORITY_BACKGROUND 8 /* Normal application threads */ 43#define PRIORITY_BACKGROUND 8 /* Normal application threads */
44 44
45#if CONFIG_CODEC == SWCODEC 45#if CONFIG_CODEC == SWCODEC
46#define MAXTHREADS 16 46#define MAXTHREADS 17
47#else 47#else
48#define MAXTHREADS 11 48#define MAXTHREADS 11
49#endif 49#endif