Commit 00724b73 authored by Sam Hocevar's avatar Sam Hocevar

* ./include/vlc_common.h: declared aout_fifo_t.

parent a2c67408
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* aout_internal.h : internal defines for audio output * aout_internal.h : internal defines for audio output
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * 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> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -80,12 +80,12 @@ typedef struct aout_alloc_t ...@@ -80,12 +80,12 @@ typedef struct aout_alloc_t
/***************************************************************************** /*****************************************************************************
* aout_fifo_t : audio output buffer FIFO * aout_fifo_t : audio output buffer FIFO
*****************************************************************************/ *****************************************************************************/
typedef struct aout_fifo_t struct aout_fifo_t
{ {
aout_buffer_t * p_first; aout_buffer_t * p_first;
aout_buffer_t ** pp_last; aout_buffer_t ** pp_last;
audio_date_t end_date; audio_date_t end_date;
} aout_fifo_t; };
/***************************************************************************** /*****************************************************************************
* aout_filter_t : audio output filter * aout_filter_t : audio output filter
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions * Collection of useful common types and macros definitions
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * 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> * Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr> * Vincent Seguin <seguin@via.ecp.fr>
...@@ -175,6 +175,7 @@ typedef struct stream_sys_t stream_sys_t; ...@@ -175,6 +175,7 @@ typedef struct stream_sys_t stream_sys_t;
/* Audio */ /* Audio */
typedef struct aout_instance_t aout_instance_t; typedef struct aout_instance_t aout_instance_t;
typedef struct aout_sys_t aout_sys_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_input_t aout_input_t;
typedef struct aout_buffer_t aout_buffer_t; typedef struct aout_buffer_t aout_buffer_t;
typedef struct audio_sample_format_t audio_sample_format_t; typedef struct audio_sample_format_t audio_sample_format_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment