diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-07-12 10:10:02 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-12 10:10:02 +0000 |
| commit | 7ba03e627962e2f903b1c122b7b33d7ce3b7be06 (patch) | |
| tree | 7b52eaf9fd5abd849a29ed96fba842ccfa497128 /apps/codecs/lib/codeclib.h | |
| parent | a19acbdadd036e0d2c1ca000661c86922f775d56 (diff) | |
| download | rockbox-7ba03e627962e2f903b1c122b7b33d7ce3b7be06.zip rockbox-7ba03e627962e2f903b1c122b7b33d7ce3b7be06.tar.gz rockbox-7ba03e627962e2f903b1c122b7b33d7ce3b7be06.tar.bz2 rockbox-7ba03e627962e2f903b1c122b7b33d7ce3b7be06.tar.xz | |
removed an extra codec_api struct pointer and the function setting it
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7117 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib/codeclib.h')
| -rw-r--r-- | apps/codecs/lib/codeclib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h index 762b68d..77276fb 100644 --- a/apps/codecs/lib/codeclib.h +++ b/apps/codecs/lib/codeclib.h @@ -24,7 +24,7 @@ extern int mem_ptr; extern int bufsize; -extern unsigned char* mallocbuf; // 512K from the start of MP3 buffer +extern unsigned char* mallocbuf; /* 512K from the start of MP3 buffer */ void* codec_malloc(size_t size); void* codec_calloc(size_t nmemb, size_t size); |