summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/codeclib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib/codeclib.c')
-rw-r--r--apps/codecs/lib/codeclib.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c
index 3a13706..329b0e2 100644
--- a/apps/codecs/lib/codeclib.c
+++ b/apps/codecs/lib/codeclib.c
@@ -33,15 +33,6 @@ unsigned char* mp3buf; // The actual MP3 buffer from Rockbox
unsigned char* mallocbuf; // 512K from the start of MP3 buffer
unsigned char* filebuf; // The rest of the MP3 buffer
-unsigned bs_log2(unsigned x)
-{ return bs_generic(x, BS_LOG2); }
-unsigned bs_log2_0(unsigned x)
-{ return bs_generic(x, BS_LOG2|BS_0_0); }
-unsigned bs_clz(unsigned x)
-{ return bs_generic(x, BS_CLZ); }
-unsigned bs_clz_0(unsigned x)
-{ return bs_generic(x, BS_CLZ|BS_0_0); }
-
int codec_init(void)
{
mem_ptr = 0;