/** \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);