diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-05-08 10:34:05 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-05-08 10:34:05 +0000 |
| commit | 897fd9282781d2f90dc4193cca908f1b17e00cb0 (patch) | |
| tree | d3ca20fa59225ca6f98135b916c8ddc56637e7c7 /apps/codecs/lib/codeclib.c | |
| parent | 75e3fb7edbe686b3aff8abe471fc80bcde6a3d55 (diff) | |
| download | rockbox-897fd9282781d2f90dc4193cca908f1b17e00cb0.zip rockbox-897fd9282781d2f90dc4193cca908f1b17e00cb0.tar.gz rockbox-897fd9282781d2f90dc4193cca908f1b17e00cb0.tar.bz2 rockbox-897fd9282781d2f90dc4193cca908f1b17e00cb0.tar.xz | |
codeclib: Declare several variables static and remove unused variables.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29831 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib/codeclib.c')
| -rw-r--r-- | apps/codecs/lib/codeclib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c index 3a46f6d..e672a78 100644 --- a/apps/codecs/lib/codeclib.c +++ b/apps/codecs/lib/codeclib.c @@ -27,11 +27,11 @@ #include "codeclib.h" #include "metadata.h" -size_t mem_ptr; -size_t bufsize; -unsigned char* mp3buf; // The actual MP3 buffer from Rockbox -unsigned char* mallocbuf; // 512K from the start of MP3 buffer -unsigned char* filebuf; // The rest of the MP3 buffer +/* The following variables are used by codec_malloc() to make use of free RAM + * within the statically allocated codec buffer. */ +static size_t mem_ptr; +static size_t bufsize; +static unsigned char* mallocbuf; int codec_init(void) { |