summaryrefslogtreecommitdiffstats
path: root/mp3lib/layer3.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-06 01:06:21 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-06 01:06:21 +0000
commit0bdf67044ce904963374261c9426fe885aa34373 (patch)
treed2ce3617b46ed2cd955c1082a186a25b32e60b9d /mp3lib/layer3.c
parent834569d109748c88bb3c725056599733a760afa4 (diff)
downloadmpv-0bdf67044ce904963374261c9426fe885aa34373.tar.bz2
mpv-0bdf67044ce904963374261c9426fe885aa34373.tar.xz
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12132 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/layer3.c')
-rw-r--r--mp3lib/layer3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mp3lib/layer3.c b/mp3lib/layer3.c
index d4863f5b36..49516fbcfe 100644
--- a/mp3lib/layer3.c
+++ b/mp3lib/layer3.c
@@ -44,10 +44,10 @@ struct bandInfoStruct {
int shortDiff[13];
};
-int longLimit[9][23];
-int shortLimit[9][14];
+static int longLimit[9][23];
+static int shortLimit[9][14];
-struct bandInfoStruct bandInfo[9] = {
+static struct bandInfoStruct bandInfo[9] = {
/* MPEG 1.0 */
{ {0,4,8,12,16,20,24,30,36,44,52,62,74, 90,110,134,162,196,238,288,342,418,576},
@@ -110,7 +110,7 @@ static real pow1_1[2][16],pow2_1[2][16],pow1_2[2][16],pow2_2[2][16];
/*
* init tables for layer-3
*/
-void init_layer3(int down_sample_sblimit)
+static void init_layer3(int down_sample_sblimit)
{
int i,j,k,l;