rockbox/apps/codecs/libwmapro/wmapro_mdct.h
Mohamed Tarek d884af2b99 Partial conversion of the wmapro decoder to fixed point arithmetic. Currently inverse quantization & rescaling,
imdct and windowing are all in fixed point.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27302 a1c6a512-1295-4272-9138-f99709370657
2010-07-05 22:33:37 +00:00

8 lines
156 B
C

#ifndef _WMAPRO_MDCT_H_
#define _WMAPRO_MDCT_H_
#include <inttypes.h>
void imdct_half(unsigned int nbits, int32_t *output, const int32_t *input);
#endif