summaryrefslogtreecommitdiff
path: root/apps/codecs/lib
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-08 10:34:05 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-08 10:34:05 +0000
commit897fd9282781d2f90dc4193cca908f1b17e00cb0 (patch)
treed3ca20fa59225ca6f98135b916c8ddc56637e7c7 /apps/codecs/lib
parent75e3fb7edbe686b3aff8abe471fc80bcde6a3d55 (diff)
downloadrockbox-897fd9282781d2f90dc4193cca908f1b17e00cb0.tar.gz
rockbox-897fd9282781d2f90dc4193cca908f1b17e00cb0.zip
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')
-rw-r--r--apps/codecs/lib/codeclib.c10
-rw-r--r--apps/codecs/lib/codeclib.h5
2 files changed, 5 insertions, 10 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{
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index 30091c5333..d0f985b8e1 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -30,11 +30,6 @@
30#include "fft.h" 30#include "fft.h"
31 31
32extern struct codec_api *ci; 32extern struct codec_api *ci;
33extern size_t mem_ptr;
34extern size_t bufsize;
35extern unsigned char* mp3buf; /* The actual MP3 buffer from Rockbox */
36extern unsigned char* mallocbuf; /* The free space after the codec in the codec buffer */
37extern unsigned char* filebuf; /* The rest of the MP3 buffer */
38 33
39/* Standard library functions that are used by the codecs follow here */ 34/* Standard library functions that are used by the codecs follow here */
40 35