Update encoder and decoder examples. One inch away from everything
[platform/upstream/libvorbis.git] / lib / mdct.h
index 4337ca3..c08827c 100644 (file)
@@ -5,27 +5,26 @@
  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
  *                                                                  *
- * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999             *
- * by 1999 Monty and The XIPHOPHORUS Company                        *
+ * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
+ * by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
  * http://www.xiph.org/                                             *
  *                                                                  *
  ********************************************************************
 
  function: modified discrete cosine transform prototypes
+ last mod: $Id: mdct.h,v 1.10 2000/01/22 13:28:26 xiphmont Exp $
 
  ********************************************************************/
 
 #ifndef _OGG_mdct_H_
 #define _OGG_mdct_H_
 
-#include "codec.h"
+#include "vorbis/codec.h"
 
 extern void mdct_init(mdct_lookup *lookup,int n);
 extern void mdct_clear(mdct_lookup *l);
-extern void mdct_forward(mdct_lookup *init, double *in, 
-                        double *out, double *window);
-extern void mdct_backward(mdct_lookup *init, double *in, 
-                         double *out, double *window);
+extern void mdct_forward(mdct_lookup *init, double *in, double *out);
+extern void mdct_backward(mdct_lookup *init, double *in, double *out);
 
 #endif