Mercurial > mplayer.hg
annotate mp3lib/tabinit.c @ 12464:d4f559200e16
changes for alsa9/alsa1.x merge, only alsa.
author | joyping |
---|---|
date | Wed, 12 May 2004 22:49:23 +0000 |
parents | 1975bcc1d015 |
children | 07e7a572bd84 |
rev | line source |
---|---|
12132 | 1 real mp3lib_decwin[(512+32)]; |
2 static real cos64[32], cos32[16], cos16[8], cos8[4], cos4[2]; | |
12131
d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
alex
parents:
8560
diff
changeset
|
3 real *mp3lib_pnts[]={ cos64,cos32,cos16,cos8,cos4 }; |
1 | 4 |
1245
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1045
diff
changeset
|
5 static long intwinbase[] = { |
1 | 6 0, -1, -1, -1, -1, -1, -1, -2, -2, -2, |
7 -2, -3, -3, -4, -4, -5, -5, -6, -7, -7, | |
8 -8, -9, -10, -11, -13, -14, -16, -17, -19, -21, | |
9 -24, -26, -29, -31, -35, -38, -41, -45, -49, -53, | |
10 -58, -63, -68, -73, -79, -85, -91, -97, -104, -111, | |
11 -117, -125, -132, -139, -147, -154, -161, -169, -176, -183, | |
12 -190, -196, -202, -208, -213, -218, -222, -225, -227, -228, | |
13 -228, -227, -224, -221, -215, -208, -200, -189, -177, -163, | |
14 -146, -127, -106, -83, -57, -29, 2, 36, 72, 111, | |
15 153, 197, 244, 294, 347, 401, 459, 519, 581, 645, | |
16 711, 779, 848, 919, 991, 1064, 1137, 1210, 1283, 1356, | |
17 1428, 1498, 1567, 1634, 1698, 1759, 1817, 1870, 1919, 1962, | |
18 2001, 2032, 2057, 2075, 2085, 2087, 2080, 2063, 2037, 2000, | |
19 1952, 1893, 1822, 1739, 1644, 1535, 1414, 1280, 1131, 970, | |
20 794, 605, 402, 185, -45, -288, -545, -814, -1095, -1388, | |
21 -1692, -2006, -2330, -2663, -3004, -3351, -3705, -4063, -4425, -4788, | |
22 -5153, -5517, -5879, -6237, -6589, -6935, -7271, -7597, -7910, -8209, | |
23 -8491, -8755, -8998, -9219, -9416, -9585, -9727, -9838, -9916, -9959, | |
24 -9966, -9935, -9863, -9750, -9592, -9389, -9139, -8840, -8492, -8092, | |
25 -7640, -7134, -6574, -5959, -5288, -4561, -3776, -2935, -2037, -1082, | |
26 -70, 998, 2122, 3300, 4533, 5818, 7154, 8540, 9975, 11455, | |
27 12980, 14548, 16155, 17799, 19478, 21189, 22929, 24694, 26482, 28289, | |
28 30112, 31947, 33791, 35640, 37489, 39336, 41176, 43006, 44821, 46617, | |
29 48390, 50137, 51853, 53534, 55178, 56778, 58333, 59838, 61289, 62684, | |
30 64019, 65290, 66494, 67629, 68692, 69679, 70590, 71420, 72169, 72835, | |
31 73415, 73908, 74313, 74630, 74856, 74992, 75038 }; | |
32 | |
12131
d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
alex
parents:
8560
diff
changeset
|
33 static void make_decode_tables(long scaleval) |
1 | 34 { |
35 int i,j,k,kr,divv; | |
36 real *table,*costab; | |
37 | |
38 | |
39 for(i=0;i<5;i++) | |
40 { | |
41 kr=0x10>>i; divv=0x40>>i; | |
12131
d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
alex
parents:
8560
diff
changeset
|
42 costab = mp3lib_pnts[i]; |
1 | 43 for(k=0;k<kr;k++) costab[k] = 1.0 / (2.0 * cos(M_PI * ((double) k * 2.0 + 1.0) / (double) divv)); |
44 } | |
45 | |
8560
1320f1b3229d
fixing that f*cking linker 'bug' e.g. naming config with libmp3lame
alex
parents:
1245
diff
changeset
|
46 table = mp3lib_decwin; |
1 | 47 scaleval = -scaleval; |
48 for(i=0,j=0;i<256;i++,j++,table+=32) | |
49 { | |
8560
1320f1b3229d
fixing that f*cking linker 'bug' e.g. naming config with libmp3lame
alex
parents:
1245
diff
changeset
|
50 if(table < mp3lib_decwin+512+16) |
1 | 51 table[16] = table[0] = (double) intwinbase[j] / 65536.0 * (double) scaleval; |
52 if(i % 32 == 31) | |
53 table -= 1023; | |
54 if(i % 64 == 63) | |
55 scaleval = - scaleval; | |
56 } | |
57 | |
58 for( /* i=256 */ ;i<512;i++,j--,table+=32) | |
59 { | |
8560
1320f1b3229d
fixing that f*cking linker 'bug' e.g. naming config with libmp3lame
alex
parents:
1245
diff
changeset
|
60 if(table < mp3lib_decwin+512+16) |
1 | 61 table[16] = table[0] = (double) intwinbase[j] / 65536.0 * (double) scaleval; |
62 if(i % 32 == 31) | |
63 table -= 1023; | |
64 if(i % 64 == 63) | |
65 scaleval = - scaleval; | |
66 } | |
67 } | |
68 | |
69 |