From 0bdf67044ce904963374261c9426fe885aa34373 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 6 Apr 2004 01:06:21 +0000 Subject: 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 --- mp3lib/layer3.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mp3lib/layer3.c') 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; -- cgit v1.2.3