2e5b1b1a9c
Changes by Buschel: * Reduced footprint by making cosine table of size 1^13 instead of 1^15 * Corrected interpolation in the cos~ object * Optimized multiplication on ARM platforms git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26534 a1c6a512-1295-4272-9138-f99709370657
8 lines
239 B
C
8 lines
239 B
C
/* For definition of the cos_table[] look into cos_table.c */
|
|
#ifdef ROCKBOX
|
|
#define ILOGCOSTABSIZE 13
|
|
#else /* ROCKBOX */
|
|
#define ILOGCOSTABSIZE 15
|
|
#endif /* ROCKBOX */
|
|
#define ICOSTABSIZE (1<<ILOGCOSTABSIZE)
|
|
extern t_sample cos_table[];
|