blob: f40bf70fcfd4d9b137f17a31e635c3cb6f792a77 (
plain)
1
2
3
4
5
6
7
8
9
|
#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_ */
|