]> git.sesse.net Git - vlc/blobdiff - modules/codec/a52old/downmix.h
* modules/demux/ogg.c, modules/codec/vorbis.c: misc small fixes.
[vlc] / modules / codec / a52old / downmix.h
index 0da10741555ab935559e40a6f963d4d8210206cb..b999eb4c7d4b11d7eca9eed86d98094398a557f3 100644 (file)
@@ -2,7 +2,7 @@
  * downmix.h : A52 downmix types
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: downmix.h,v 1.1 2002/08/04 17:23:42 sam Exp $
+ * $Id: downmix.h,v 1.3 2002/08/08 00:35:11 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 dm_par_t
+typedef struct dm_par_t
 {
     float unit;
     float clev;
     float slev;
-};
 
-struct downmix_t
+} dm_par_t;
+
+typedef struct downmix_t
 {
     VLC_COMMON_MEMBERS
 
@@ -42,5 +43,6 @@ struct downmix_t
     void (*pf_downmix_3f_0r_to_2ch)(float *, dm_par_t * dm_par);
     void (*pf_stream_sample_2ch_to_s16)(s16 *, float *left, float *right);
     void (*pf_stream_sample_1ch_to_s16)(s16 *, float *center);
-};
+
+} downmix_t;