summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2008-11-06 18:49:11 +0000
committerNils Wallménius <nils@rockbox.org>2008-11-06 18:49:11 +0000
commit24f551bc75fab703240db78bd01565d486b19c0c (patch)
tree3e7d34b44b7d51e3b5bf5ee2b7bad8a2424ffc34
parent5bef735cf5abcc3358cdd867f41ac423d04c0d83 (diff)
downloadrockbox-24f551bc75fab703240db78bd01565d486b19c0c.tar.gz
rockbox-24f551bc75fab703240db78bd01565d486b19c0c.zip
Correct a comment and police comment style, no functional change
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19030 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/lib/codeclib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index 477818a23d..6e92e29417 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -27,9 +27,9 @@
27extern struct codec_api *ci; 27extern struct codec_api *ci;
28extern long mem_ptr; 28extern long mem_ptr;
29extern long bufsize; 29extern long bufsize;
30extern unsigned char* mp3buf; // The actual MP3 buffer from Rockbox 30extern unsigned char* mp3buf; /* The actual MP3 buffer from Rockbox */
31extern unsigned char* mallocbuf; // 512K from the start of MP3 buffer 31extern unsigned char* mallocbuf; /* The free space after the codec in the codec buffer */
32extern unsigned char* filebuf; // The rest of the MP3 buffer 32extern unsigned char* filebuf; /* The rest of the MP3 buffer */
33 33
34/* Standard library functions that are used by the codecs follow here */ 34/* Standard library functions that are used by the codecs follow here */
35 35