summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/codeclib.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib/codeclib.h')
-rw-r--r--apps/codecs/lib/codeclib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index 00b60c3e92..366d30e064 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -24,6 +24,7 @@
24 24
25#define MALLOC_BUFSIZE (512*1024) 25#define MALLOC_BUFSIZE (512*1024)
26 26
27extern struct codec_api *ci;
27extern long mem_ptr; 28extern long mem_ptr;
28extern long bufsize; 29extern long bufsize;
29extern unsigned char* mp3buf; // The actual MP3 buffer from Rockbox 30extern unsigned char* mp3buf; // The actual MP3 buffer from Rockbox
@@ -55,7 +56,7 @@ void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, con
55 56
56/* Various codec helper functions */ 57/* Various codec helper functions */
57 58
58int codec_init(struct codec_api* rb); 59int codec_init(void);
59void codec_set_replaygain(struct mp3entry* id3); 60void codec_set_replaygain(struct mp3entry* id3);
60 61
61#ifdef RB_PROFILE 62#ifdef RB_PROFILE