summaryrefslogtreecommitdiff
path: root/apps/codecs/mpa.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/mpa.c')
-rw-r--r--apps/codecs/mpa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/mpa.c b/apps/codecs/mpa.c
index 37a1afadfa..1a0b03c272 100644
--- a/apps/codecs/mpa.c
+++ b/apps/codecs/mpa.c
@@ -56,7 +56,7 @@ unsigned char mad_main_data[MAD_BUFFER_MDLEN] IBSS_ATTR;
56int mpeg_latency[3] = { 0, 481, 529 }; 56int mpeg_latency[3] = { 0, 481, 529 };
57int mpeg_framesize[3] = {384, 1152, 1152}; 57int mpeg_framesize[3] = {384, 1152, 1152};
58 58
59void init_mad(void) 59static void init_mad(void)
60{ 60{
61 ci->memset(&stream, 0, sizeof(struct mad_stream)); 61 ci->memset(&stream, 0, sizeof(struct mad_stream));
62 ci->memset(&frame, 0, sizeof(struct mad_frame)); 62 ci->memset(&frame, 0, sizeof(struct mad_frame));
@@ -85,7 +85,7 @@ void init_mad(void)
85 85
86} 86}
87 87
88int get_file_pos(int newtime) 88static int get_file_pos(int newtime)
89{ 89{
90 int pos = -1; 90 int pos = -1;
91 struct mp3entry *id3 = ci->id3; 91 struct mp3entry *id3 = ci->id3;