diff options
author | Rich J Wareham <richwareham@users.sourceforge.net> | 2001-06-18 09:39:05 +0000 |
---|---|---|
committer | Rich J Wareham <richwareham@users.sourceforge.net> | 2001-06-18 09:39:05 +0000 |
commit | 32693b7bdcac89e60654ad3f01d1739be45c1d1f (patch) | |
tree | 29f31b90f6e3ad64ca609788f79379a081e11426 /src/xine-engine/xine_internal.h | |
parent | 7ab2e7c31144b68d3f550e470fd2d1cc9dc441d7 (diff) | |
download | xine-lib-32693b7bdcac89e60654ad3f01d1739be45c1d1f.tar.gz xine-lib-32693b7bdcac89e60654ad3f01d1739be45c1d1f.tar.bz2 |
Added first step towards integrating SPU decoder into the new framework.
CVS patchset: 207
CVS date: 2001/06/18 09:39:05
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 22a5a5128..a6e44b2a8 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.23 2001/06/16 18:03:22 guenter Exp $ + * $Id: xine_internal.h,v 1.24 2001/06/18 09:39:05 richwareham Exp $ * */ @@ -129,6 +129,7 @@ typedef struct xine_s { char cur_mrl[1024]; fifo_buffer_t *spu_fifo; + pthread_t spu_thread; int audio_channel; int spu_channel; @@ -301,6 +302,23 @@ void video_decoder_init (xine_t *this); void video_decoder_shutdown (xine_t *this); /* + * spu decoder stuff + */ + +/* + * init spu decoder, allocate spu fifo, + * start spu decoder thread + */ + +void spu_decoder_init (xine_t *this); + +/* + * quit spu thread + */ + +void spu_decoder_shutdown (xine_t *this); + +/* * init audio decoders, allocate audio fifo, * start audio decoder thread */ |