1
0
Fork 0
forked from len0rd/rockbox

Make local functions static in codecs, where possible.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19612 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-12-29 19:49:48 +00:00
parent 6316e0ff53
commit 8e22f7f5b0
12 changed files with 44 additions and 44 deletions

View file

@ -56,7 +56,7 @@ unsigned char mad_main_data[MAD_BUFFER_MDLEN] IBSS_ATTR;
int mpeg_latency[3] = { 0, 481, 529 };
int mpeg_framesize[3] = {384, 1152, 1152};
void init_mad(void)
static void init_mad(void)
{
ci->memset(&stream, 0, sizeof(struct mad_stream));
ci->memset(&frame, 0, sizeof(struct mad_frame));
@ -85,7 +85,7 @@ void init_mad(void)
}
int get_file_pos(int newtime)
static int get_file_pos(int newtime)
{
int pos = -1;
struct mp3entry *id3 = ci->id3;