Mercurial > audlegacy
annotate Plugins/Input/mpg123/tabinit.c @ 1637:5261e37b4d55 trunk
[svn] - fully working CoreAudio plugin, based on the OSS plugin and an incomplete xmms coreaudio plugin (fink)
author | nenolod |
---|---|
date | Thu, 07 Sep 2006 11:32:59 -0700 |
parents | b5ae09a6c2f1 |
children |
rev | line source |
---|---|
61 | 1 |
2 #include <stdlib.h> | |
3 #include <math.h> | |
4 | |
5 #include "mpg123.h" | |
6 | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
7 mpgdec_real mpgdec_decwin[512 + 32]; |
970
0f294f2b0a9b
[svn] - integer-mode decoding accuracy improvements
nenolod
parents:
178
diff
changeset
|
8 static mpgdec_real cos64[16], cos32[8], cos16[4], cos8[2], cos4[1]; |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
9 mpgdec_real *mpgdec_pnts[] = { cos64, cos32, cos16, cos8, cos4 }; |
61 | 10 |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
11 static unsigned char *mpgdec_conv16to8_buf = NULL; |
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
12 unsigned char *mpgdec_conv16to8; |
61 | 13 |
14 static long intwinbase[] = { | |
15 0, -1, -1, -1, -1, -1, -1, -2, -2, -2, | |
16 -2, -3, -3, -4, -4, -5, -5, -6, -7, -7, | |
17 -8, -9, -10, -11, -13, -14, -16, -17, -19, -21, | |
18 -24, -26, -29, -31, -35, -38, -41, -45, -49, -53, | |
19 -58, -63, -68, -73, -79, -85, -91, -97, -104, -111, | |
20 -117, -125, -132, -139, -147, -154, -161, -169, -176, -183, | |
21 -190, -196, -202, -208, -213, -218, -222, -225, -227, -228, | |
22 -228, -227, -224, -221, -215, -208, -200, -189, -177, -163, | |
23 -146, -127, -106, -83, -57, -29, 2, 36, 72, 111, | |
24 153, 197, 244, 294, 347, 401, 459, 519, 581, 645, | |
25 711, 779, 848, 919, 991, 1064, 1137, 1210, 1283, 1356, | |
26 1428, 1498, 1567, 1634, 1698, 1759, 1817, 1870, 1919, 1962, | |
27 2001, 2032, 2057, 2075, 2085, 2087, 2080, 2063, 2037, 2000, | |
28 1952, 1893, 1822, 1739, 1644, 1535, 1414, 1280, 1131, 970, | |
29 794, 605, 402, 185, -45, -288, -545, -814, -1095, -1388, | |
30 -1692, -2006, -2330, -2663, -3004, -3351, -3705, -4063, -4425, -4788, | |
31 -5153, -5517, -5879, -6237, -6589, -6935, -7271, -7597, -7910, -8209, | |
32 -8491, -8755, -8998, -9219, -9416, -9585, -9727, -9838, -9916, -9959, | |
33 -9966, -9935, -9863, -9750, -9592, -9389, -9139, -8840, -8492, -8092, | |
34 -7640, -7134, -6574, -5959, -5288, -4561, -3776, -2935, -2037, -1082, | |
35 -70, 998, 2122, 3300, 4533, 5818, 7154, 8540, 9975, 11455, | |
36 12980, 14548, 16155, 17799, 19478, 21189, 22929, 24694, 26482, 28289, | |
37 30112, 31947, 33791, 35640, 37489, 39336, 41176, 43006, 44821, 46617, | |
38 48390, 50137, 51853, 53534, 55178, 56778, 58333, 59838, 61289, 62684, | |
39 64019, 65290, 66494, 67629, 68692, 69679, 70590, 71420, 72169, 72835, | |
40 73415, 73908, 74313, 74630, 74856, 74992, 75038 | |
41 }; | |
42 | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
43 void mpgdec_make_decode_tables_fpu(long scaleval); |
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
44 void mpgdec_make_decode_tables_mmx(long scaleval); |
61 | 45 |
46 void | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
47 mpgdec_make_decode_tables_fpu(long scaleval) |
61 | 48 { |
49 int i, j; | |
970
0f294f2b0a9b
[svn] - integer-mode decoding accuracy improvements
nenolod
parents:
178
diff
changeset
|
50 mpgdec_real *table, *costab; |
61 | 51 |
52 for (i = 0; i < 5; i++) { | |
53 int kr = 0x10 >> i; | |
54 int divv = 0x40 >> i; | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
55 costab = mpgdec_pnts[i]; |
61 | 56 for (j = 0; j < kr; j++) |
57 costab[j] = | |
58 1.0 / (2.0 * | |
59 cos(M_PI * ((double) j * 2.0 + 1.0) / (double) divv)); | |
60 } | |
61 | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
62 table = mpgdec_decwin; |
61 | 63 scaleval = -scaleval; |
64 for (i = 0, j = 0; i < 256; i++, j++, table += 32) { | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
65 if (table < mpgdec_decwin + 512 + 16) |
61 | 66 table[16] = table[0] = |
67 (double) intwinbase[j] / 65536.0 * (double) scaleval; | |
68 if (i % 32 == 31) | |
69 table -= 1023; | |
70 if (i % 64 == 63) | |
71 scaleval = -scaleval; | |
72 } | |
73 | |
74 for ( /* i=256 */ ; i < 512; i++, j--, table += 32) { | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
75 if (table < mpgdec_decwin + 512 + 16) |
61 | 76 table[16] = table[0] = |
77 (double) intwinbase[j] / 65536.0 * (double) scaleval; | |
78 if (i % 32 == 31) | |
79 table -= 1023; | |
80 if (i % 64 == 63) | |
81 scaleval = -scaleval; | |
82 } | |
83 } | |
84 | |
85 void | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
86 mpgdec_make_decode_tables_mmx(long scaleval) |
61 | 87 { |
88 } | |
89 | |
90 void | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
91 mpgdec_make_decode_tables(long scaleval) |
61 | 92 { |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
93 mpgdec_make_decode_tables_fpu(scaleval); |
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
94 mpgdec_make_decode_tables_mmx(scaleval); |
61 | 95 } |
96 | |
97 | |
98 | |
99 | |
100 void | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
101 mpgdec_make_conv16to8_table(void) |
61 | 102 { |
103 int i; | |
104 | |
105 /* | |
106 * ????: 8.0 is right but on SB cards '2.0' is a better value ??? | |
107 */ | |
108 | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
109 if (!mpgdec_conv16to8_buf) { |
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
110 mpgdec_conv16to8_buf = g_malloc(8192); |
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
111 mpgdec_conv16to8 = mpgdec_conv16to8_buf + 4096; |
61 | 112 } |
113 | |
114 for (i = -4096; i < 4096; i++) { | |
1098
b5ae09a6c2f1
[svn] - prepare to split audacious code away from the actual decoder and use a highlevel API
nenolod
parents:
970
diff
changeset
|
115 mpgdec_conv16to8[i] = (i >> 5) + 128; |
61 | 116 } |
117 } |