From 0865846ecb7a6b4e5fbf5127d355892d2ff53d9c Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 21 Jun 2003 23:45:07 +0000 Subject: 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 --- mp3lib/layer3.c | 6 +++--- 1 file 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}, -- cgit v1.2.3