]> git.sesse.net Git - vlc/commitdiff
* ./include/vlc_common.h: declared aout_fifo_t.
authorSam Hocevar <sam@videolan.org>
Wed, 21 Aug 2002 23:19:58 +0000 (23:19 +0000)
committerSam Hocevar <sam@videolan.org>
Wed, 21 Aug 2002 23:19:58 +0000 (23:19 +0000)
include/aout_internal.h
include/vlc_common.h

index ae14412dff403530e1f0c1ac1f26eae9ed56559a..c441b93c63ce842fad432809858b7a45f39ea40f 100644 (file)
@@ -2,7 +2,7 @@
  * aout_internal.h : internal defines for audio output
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: aout_internal.h,v 1.9 2002/08/21 23:17:41 sam Exp $
+ * $Id: aout_internal.h,v 1.10 2002/08/21 23:19:58 sam Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -80,12 +80,12 @@ typedef struct aout_alloc_t
 /*****************************************************************************
  * aout_fifo_t : audio output buffer FIFO
  *****************************************************************************/
-typedef struct aout_fifo_t
+struct aout_fifo_t
 {
     aout_buffer_t *         p_first;
     aout_buffer_t **        pp_last;
     audio_date_t            end_date;
-} aout_fifo_t;
+};
 
 /*****************************************************************************
  * aout_filter_t : audio output filter
index 1127bfb3e115f6684b78ec78b1d58bf6666ff3fd..14df42b1ae97d586030e45c0ae7629eb8239c5ca 100644 (file)
@@ -3,7 +3,7 @@
  * Collection of useful common types and macros definitions
  *****************************************************************************
  * Copyright (C) 1998, 1999, 2000 VideoLAN
- * $Id: vlc_common.h,v 1.22 2002/08/21 22:41:59 massiot Exp $
+ * $Id: vlc_common.h,v 1.23 2002/08/21 23:19:58 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@via.ecp.fr>
  *          Vincent Seguin <seguin@via.ecp.fr>
@@ -175,6 +175,7 @@ typedef struct stream_sys_t stream_sys_t;
 /* Audio */
 typedef struct aout_instance_t aout_instance_t;
 typedef struct aout_sys_t aout_sys_t;
+typedef struct aout_fifo_t aout_fifo_t;
 typedef struct aout_input_t aout_input_t;
 typedef struct aout_buffer_t aout_buffer_t;
 typedef struct audio_sample_format_t audio_sample_format_t;