]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - imdct.h
Rename mdcdt.c and mdcdt.h.
[paraslash.git] / imdct.h
diff --git a/imdct.h b/imdct.h
new file mode 100644 (file)
index 0000000..46fc403
--- /dev/null
+++ b/imdct.h
@@ -0,0 +1,9 @@
+/** \file imdct.h: Exported symbols from imdct.c. */
+
+struct mdct_context;
+
+float *ff_sine_windows[6];
+void sine_window_init(float *window, int n);
+int imdct_init(int nbits, int inverse, struct mdct_context **result);
+void imdct(struct mdct_context *s, float *output, const float *input);
+void imdct_end(struct mdct_context *s);