1
0
Fork 0
forked from len0rd/rockbox

Remove some sample functions from codeclib - these were for verifying the generated asm for bs_generic and never intended for use.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23911 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Mahone 2009-12-09 17:13:06 +00:00
parent a47601a21d
commit bafe14db55

View file

@ -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;