Work around some clang warnings.
[paraslash.git] / imdct.h
diff --git a/imdct.h b/imdct.h
index 46fc4033c1e2f199c3b761c02765bab04d364ea9..442b98bf7c5581d9ca090ca5fe268113e89a2fde 100644 (file)
--- a/imdct.h
+++ b/imdct.h
@@ -1,9 +1,7 @@
-/** \file imdct.h: Exported symbols from imdct.c. */
+/** \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);
+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);