summaryrefslogtreecommitdiff
path: root/src/xine-engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine')
-rw-r--r--src/xine-engine/xine.c11
-rw-r--r--src/xine-engine/xine_internal.h15
2 files changed, 2 insertions, 24 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index dd8185628..c13f43a7e 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -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.c,v 1.33 2001/07/14 12:50:34 guenter Exp $
+ * $Id: xine.c,v 1.34 2001/07/14 13:28:32 guenter Exp $
*
* top-level xine functions
*
@@ -305,10 +305,6 @@ void xine_exit (xine_t *this) {
pthread_mutex_unlock (&this->xine_lock);
- printf ("xine_exit: shutdown spu\n");
-
- spu_decoder_shutdown (this);
-
printf ("xine_exit: shutdown audio\n");
audio_decoder_shutdown (this);
@@ -405,11 +401,6 @@ xine_t *xine_init (vo_driver_t *vo,
this->video_out = vo_new_instance (vo, this->metronom);
video_decoder_init (this);
- /*
- * init SPU decoder (must be done before video decoder
- * so that this->spu_decoder is valid).
- */
- spu_decoder_init (this);
if(ao) {
this->audio_out = ao;
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index a9292ca9d..9fa9c2f26 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.28 2001/07/14 12:50:34 guenter Exp $
+ * $Id: xine_internal.h,v 1.29 2001/07/14 13:28:32 guenter Exp $
*
*/
@@ -314,19 +314,6 @@ void video_decoder_shutdown (xine_t *this);
*/
/*
- * 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
*/