]> git.tuebingen.mpg.de Git - paraslash.git/blob - imdct.h
wma: Remove an unused variable.
[paraslash.git] / imdct.h
1 /** \file imdct.h: Exported symbols from imdct.c. */
2
3 struct mdct_context;
4
5 float *ff_sine_windows[6];
6 void sine_window_init(float *window, int n);
7 int imdct_init(int nbits, int inverse, struct mdct_context **result);
8 void imdct(struct mdct_context *s, float *output, const float *input);
9 void imdct_end(struct mdct_context *s);