summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/codeclib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib/codeclib.c')
-rw-r--r--apps/codecs/lib/codeclib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c
index 3a46f6d06b..e672a78cc2 100644
--- a/apps/codecs/lib/codeclib.c
+++ b/apps/codecs/lib/codeclib.c
@@ -27,11 +27,11 @@
27#include "codeclib.h" 27#include "codeclib.h"
28#include "metadata.h" 28#include "metadata.h"
29 29
30size_t mem_ptr; 30/* The following variables are used by codec_malloc() to make use of free RAM
31size_t bufsize; 31 * within the statically allocated codec buffer. */
32unsigned char* mp3buf; // The actual MP3 buffer from Rockbox 32static size_t mem_ptr;
33unsigned char* mallocbuf; // 512K from the start of MP3 buffer 33static size_t bufsize;
34unsigned char* filebuf; // The rest of the MP3 buffer 34static unsigned char* mallocbuf;
35 35
36int codec_init(void) 36int codec_init(void)
37{ 37{