summaryrefslogtreecommitdiff
path: root/apps/plugins/fft/const.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2011-03-19 10:14:12 +0000
committerNils Wallménius <nils@rockbox.org>2011-03-19 10:14:12 +0000
commit5aaabbfd127321f68931c155a8a481a8107531b2 (patch)
tree72744ff02c8039db29508fad241ea6a332a5df5e /apps/plugins/fft/const.h
parent528e1850bf081298c010815c1788cf36585f2a0a (diff)
downloadrockbox-5aaabbfd127321f68931c155a8a481a8107531b2.tar.gz
rockbox-5aaabbfd127321f68931c155a8a481a8107531b2.zip
FS#12014 by Huan Zhang fixing some link errors with a recent mips toolchain.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29615 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/fft/const.h')
-rw-r--r--apps/plugins/fft/const.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/plugins/fft/const.h b/apps/plugins/fft/const.h
index c6842f4c07..865f4b0f7f 100644
--- a/apps/plugins/fft/const.h
+++ b/apps/plugins/fft/const.h
@@ -1,11 +1,11 @@
1const int16_t hamming_8192[8192]; 1extern const int16_t hamming_8192[8192];
2const int16_t hamming_4096[4096]; 2extern const int16_t hamming_4096[4096];
3const int16_t hamming_2048[2048]; 3extern const int16_t hamming_2048[2048];
4const int16_t hamming_1024[1024]; 4extern const int16_t hamming_1024[1024];
5const int16_t hamming_512[512]; 5extern const int16_t hamming_512[512];
6const int16_t hann_8192[8192]; 6extern const int16_t hann_8192[8192];
7const int16_t hann_4096[4096]; 7extern const int16_t hann_4096[4096];
8const int16_t hann_2048[2048]; 8extern const int16_t hann_2048[2048];
9const int16_t hann_1024[1024]; 9extern const int16_t hann_1024[1024];
10const int16_t hann_512[512]; 10extern const int16_t hann_512[512];
11 11