summaryrefslogtreecommitdiffstats
path: root/mp3lib/dct64.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/dct64.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/dct64.c')
-rw-r--r--mp3lib/dct64.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mp3lib/dct64.c b/mp3lib/dct64.c
index 00d31d6ec1..70c7da50a9 100644
--- a/mp3lib/dct64.c
+++ b/mp3lib/dct64.c
@@ -11,7 +11,7 @@ static void dct64_1(real *out0,real *out1,real *b1,real *b2,real *samples)
{
{
- register real *costab = pnts[0];
+ register real *costab = mp3lib_pnts[0];
b1[0x00] = samples[0x00] + samples[0x1F];
b1[0x1F] = (samples[0x00] - samples[0x1F]) * costab[0x0];
@@ -64,7 +64,7 @@ static void dct64_1(real *out0,real *out1,real *b1,real *b2,real *samples)
{
- register real *costab = pnts[1];
+ register real *costab = mp3lib_pnts[1];
b2[0x00] = b1[0x00] + b1[0x0F];
b2[0x0F] = (b1[0x00] - b1[0x0F]) * costab[0];
@@ -102,7 +102,7 @@ static void dct64_1(real *out0,real *out1,real *b1,real *b2,real *samples)
}
{
- register real *costab = pnts[2];
+ register real *costab = mp3lib_pnts[2];
b1[0x00] = b2[0x00] + b2[0x07];
b1[0x07] = (b2[0x00] - b2[0x07]) * costab[0];
@@ -142,8 +142,8 @@ static void dct64_1(real *out0,real *out1,real *b1,real *b2,real *samples)
}
{
- register real const cos0 = pnts[3][0];
- register real const cos1 = pnts[3][1];
+ register real const cos0 = mp3lib_pnts[3][0];
+ register real const cos1 = mp3lib_pnts[3][1];
b2[0x00] = b1[0x00] + b1[0x03];
b2[0x03] = (b1[0x00] - b1[0x03]) * cos0;
@@ -187,7 +187,7 @@ static void dct64_1(real *out0,real *out1,real *b1,real *b2,real *samples)
}
{
- register real const cos0 = pnts[4][0];
+ register real const cos0 = mp3lib_pnts[4][0];
b1[0x00] = b2[0x00] + b2[0x01];
b1[0x01] = (b2[0x00] - b2[0x01]) * cos0;