summaryrefslogtreecommitdiff
path: root/apps/eq.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/eq.c')
-rw-r--r--apps/eq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/eq.c b/apps/eq.c
index ac2e51daee..bf562c73f2 100644
--- a/apps/eq.c
+++ b/apps/eq.c
@@ -101,7 +101,7 @@ static const unsigned long atan_table[] = {
101 * @return sin of phase, value is a signed value from LONG_MIN to LONG_MAX, 101 * @return sin of phase, value is a signed value from LONG_MIN to LONG_MAX,
102 * representing -1 and 1 respectively. 102 * representing -1 and 1 respectively.
103 */ 103 */
104long fsincos(unsigned long phase, long *cos) { 104static long fsincos(unsigned long phase, long *cos) {
105 int32_t x, x1, y, y1; 105 int32_t x, x1, y, y1;
106 unsigned long z, z1; 106 unsigned long z, z1;
107 int i; 107 int i;
@@ -164,7 +164,7 @@ static long fsqrt(long a, unsigned int fracbits)
164 return b; 164 return b;
165} 165}
166 166
167short dbtoatab[49] = { 167static const short dbtoatab[49] = {
168 2058, 2180, 2309, 2446, 2591, 2744, 2907, 3079, 3261, 3455, 3659, 3876, 168 2058, 2180, 2309, 2446, 2591, 2744, 2907, 3079, 3261, 3455, 3659, 3876,
169 4106, 4349, 4607, 4880, 5169, 5475, 5799, 6143, 6507, 6893, 7301, 7734, 169 4106, 4349, 4607, 4880, 5169, 5475, 5799, 6143, 6507, 6893, 7301, 7734,
170 8192, 8677, 9192, 9736, 10313, 10924, 11572, 12257, 12983, 13753, 14568, 170 8192, 8677, 9192, 9736, 10313, 10924, 11572, 12257, 12983, 13753, 14568,