1
0
Fork 0
forked from len0rd/rockbox

Fixed some mp3 metadata reading performance problem. Next track

switching should be more reliable.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6691 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2005-06-12 15:14:20 +00:00
parent 7cdae1ac65
commit 097444d07c
3 changed files with 15 additions and 3 deletions

View file

@ -44,7 +44,7 @@
/* Must be a power of 2 */
#define NUM_PCM_BUFFERS (PCMBUF_SIZE / CHUNK_SIZE)
#define NUM_PCM_BUFFERS_MASK (NUM_PCM_BUFFERS - 1)
#define PCM_WATERMARK (CHUNK_SIZE * 3)
#define PCM_WATERMARK (CHUNK_SIZE * 6)
static bool pcm_playing;
static bool pcm_paused;