rockbox/apps/plugins/pdbox/PDa/intern/cos_table.h
Wincent Balin 2e5b1b1a9c pdbox: Applied several changes by Buschel. Reintroduced compilation for iPods.
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
2010-06-03 22:03:37 +00:00

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[];