blob: 442b98bf7c5581d9ca090ca5fe268113e89a2fde (
plain)
1
2
3
4
5
6
7
|
/** \file imdct.h Exported symbols from imdct.c. */
struct mdct_context;
int imdct_init(int nbits, struct mdct_context **result);
void imdct(struct mdct_context *s, float *output, const float *input);
void imdct_end(struct mdct_context *s);
|