]> git.sesse.net Git - vlc/blobdiff - include/ac3_imdct.h
* ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy.
[vlc] / include / ac3_imdct.h
index 22972bc469fd306c25dd4573893a58c30c835367..4b5a7dc2013cb3eaa4dda82836c12c6c288e62a8 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.9 2002/07/20 18:01:41 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
 {
     complex_t * buf;
     void *      buf_orig;                         /* pointer before memalign */