diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-22 02:42:49 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-22 02:42:49 +0000 |
commit | 6e6c22440014b3135d946f38cab015a99257daba (patch) | |
tree | d28cafd03da38fbead81611b0c2d7c4b32443ca8 /src/xine-engine/xine_internal.h | |
parent | 2ec0d40dc7803a6c44da5d85de3c468a82fd17b8 (diff) | |
download | xine-lib-6e6c22440014b3135d946f38cab015a99257daba.tar.gz xine-lib-6e6c22440014b3135d946f38cab015a99257daba.tar.bz2 |
audio decoder code compiles again, more cleanups in xine_internal.h
CVS patchset: 13
CVS date: 2001/04/22 02:42:49
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index b02948bb0..36c04b108 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_internal.h,v 1.5 2001/04/22 00:31:44 guenter Exp $ + * $Id: xine_internal.h,v 1.6 2001/04/22 02:42:49 guenter Exp $ * */ @@ -131,6 +131,11 @@ typedef struct xine_s { video_decoder_t *video_cur_decoder; int video_finished; + ao_functions_t *audio_out; + fifo_buffer_t *audio_fifo; + pthread_t audio_thread; + audio_decoder_t *audio_decoders[DECODER_PLUGIN_MAX]; + audio_decoder_t *audio_cur_decoder; int audio_finished; gui_status_callback_func_t gui_status_callback; |