d884af2b99
imdct and windowing are all in fixed point. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27302 a1c6a512-1295-4272-9138-f99709370657
9 lines
188 B
C
9 lines
188 B
C
#ifndef _MDCT_TABLES_H_
|
|
#define _MDCT_TABLES_H_
|
|
#include <inttypes.h>
|
|
|
|
extern const int32_t *sine_windows[6];
|
|
extern const int32_t sincos_lookup_wmap[8064];
|
|
|
|
#endif /* _MDCT_TABLES_H_ */
|
|
|