diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-22 14:03:04 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-22 14:03:04 +0000 |
| commit | b5a0f70e5b871005e2b529dbf696fbddc3451c1e (patch) | |
| tree | 0bab6ede1a6b710870801a89b4d1888bb0bb8750 /apps/playback.c | |
| parent | 8f2a3e91dc43f08b489ff105508678bf821d1f27 (diff) | |
| download | rockbox-b5a0f70e5b871005e2b529dbf696fbddc3451c1e.zip rockbox-b5a0f70e5b871005e2b529dbf696fbddc3451c1e.tar.gz rockbox-b5a0f70e5b871005e2b529dbf696fbddc3451c1e.tar.bz2 rockbox-b5a0f70e5b871005e2b529dbf696fbddc3451c1e.tar.xz | |
New debug screen for sw codec audio thread
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6805 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.c')
| -rw-r--r-- | apps/playback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c index f384a23..0881d6e 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -122,10 +122,10 @@ static volatile bool filling; static char *codecbuf; /* Total size of the ring buffer. */ -static int codecbuflen; +int codecbuflen; /* Bytes available in the buffer. */ -static volatile int codecbufused; +int codecbufused; /* Ring buffer read and write indexes. */ static volatile int buf_ridx; |