rockbox/apps/plugins/fft/const.h
Nils Wallménius 9fde12676b fft plugin: move const data into a c file and use no wider types than necessary, makes the plugin about 63kB smaller
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26100 a1c6a512-1295-4272-9138-f99709370657
2010-05-17 11:58:22 +00:00

11 lines
322 B
C

const int16_t hamming_8192[8192];
const int16_t hamming_4096[4096];
const int16_t hamming_2048[2048];
const int16_t hamming_1024[1024];
const int16_t hamming_512[512];
const int16_t hann_8192[8192];
const int16_t hann_4096[4096];
const int16_t hann_2048[2048];
const int16_t hann_1024[1024];
const int16_t hann_512[512];