]> git.sesse.net Git - vlc/blobdiff - include/ac3_imdct.h
* ALL: new module API. Makes a few things a lot simpler, and we gain
[vlc] / include / ac3_imdct.h
index 22972bc469fd306c25dd4573893a58c30c835367..e6e101c859712a1057b86edd07c8946efb8209e0 100644 (file)
@@ -2,7 +2,7 @@
  * ac3_imdct.h : AC3 IMDCT types
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: ac3_imdct.h,v 1.8 2002/06/01 12:31:57 sam Exp $
+ * $Id: ac3_imdct.h,v 1.10 2002/07/31 20:56:50 sam Exp $
  *
  * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *          Renaud Dartus <reno@videolan.org>
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
-struct complex_s {
+struct complex_t
+{
     float real;
     float imag;
 };
 
 #define N 512
 
-struct imdct_s
+struct imdct_t
 {
+    VLC_COMMON_MEMBERS
+
     complex_t * buf;
     void *      buf_orig;                         /* pointer before memalign */