Mercurial > mplayer.hg
diff mp3lib/dct64.c @ 12131:d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
author | alex |
---|---|
date | Tue, 06 Apr 2004 01:06:21 +0000 |
parents | 3b5f5d1c5041 |
children | 07e7a572bd84 |
line wrap: on
line diff
--- a/mp3lib/dct64.c Tue Apr 06 00:25:47 2004 +0000 +++ b/mp3lib/dct64.c Tue Apr 06 01:06:21 2004 +0000 @@ -11,7 +11,7 @@ { { - 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 @@ { - 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 @@ } { - 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 @@ } { - 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 @@ } { - 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;