summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r--src/xine-engine/xine_internal.h20
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
*/