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.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index 6e92e29417..1df85d6bee 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -25,14 +25,23 @@
25#include <sys/types.h> 25#include <sys/types.h>
26 26
27extern struct codec_api *ci; 27extern struct codec_api *ci;
28extern long mem_ptr; 28extern size_t mem_ptr;
29extern long bufsize; 29extern size_t 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; /* The free space after the codec in the codec 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
36/* Get these functions 'out of the way' of the standard functions. Not doing
37 * so confuses the cygwin linker, and maybe others. These functions need to
38 * be implemented elsewhere */
39#define malloc(x) codec_malloc(x)
40#define calloc(x,y) codec_calloc(x,y)
41#define realloc(x,y) codec_realloc(x,y)
42#define free(x) codec_free(x)
43#define alloca(x) __builtin_alloca(x)
44
36void* codec_malloc(size_t size); 45void* codec_malloc(size_t size);
37void* codec_calloc(size_t nmemb, size_t size); 46void* codec_calloc(size_t nmemb, size_t size);
38void* codec_realloc(void* ptr, size_t size); 47void* codec_realloc(void* ptr, size_t size);