summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-06-22 02:47:54 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-06-22 02:47:54 +0000
commitecf2f747edae9ffc3eb0057958da41915cbfac19 (patch)
tree7aa2c608a86033351ca6eaaa3f1c00488ee59cfe /apps/playback.c
parent2f2b9eab4b44f35f4aa82cd9c61255debcfa2f03 (diff)
downloadrockbox-ecf2f747edae9ffc3eb0057958da41915cbfac19.zip
rockbox-ecf2f747edae9ffc3eb0057958da41915cbfac19.tar.gz
rockbox-ecf2f747edae9ffc3eb0057958da41915cbfac19.tar.bz2
rockbox-ecf2f747edae9ffc3eb0057958da41915cbfac19.tar.xz
Daniel's fix that loads codecs in their own memory space
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6794 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c
index b2a31bf..f384a23 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -119,10 +119,10 @@ static const char codec_thread_name[] = "codec";
static volatile bool filling;
/* Ring buffer where tracks and codecs are loaded. */
-char *codecbuf;
+static char *codecbuf;
/* Total size of the ring buffer. */
-int codecbuflen;
+static int codecbuflen;
/* Bytes available in the buffer. */
static volatile int codecbufused;