summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-21 23:45:07 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-21 23:45:07 +0000
commit0865846ecb7a6b4e5fbf5127d355892d2ff53d9c (patch)
tree60bf6835c4ab27efb6ff539f2c812d7ab6b46bc9
parent7c94cd567a2460c32297a5d60a0b626946fcd929 (diff)
downloadmpv-0865846ecb7a6b4e5fbf5127d355892d2ff53d9c.tar.bz2
mpv-0865846ecb7a6b4e5fbf5127d355892d2ff53d9c.tar.xz
fixed bandInfo name clash with libmp3lame v3.93.1 (longLimit and shortLimit are also only used in layer3.c so it's safe to make them static too - avoiding further clashes)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10322 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--mp3lib/layer3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mp3lib/layer3.c b/mp3lib/layer3.c
index 97f6c44712..114cdd3975 100644
--- a/mp3lib/layer3.c
+++ b/mp3lib/layer3.c
@@ -37,10 +37,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},