diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-07-13 23:43:12 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-07-13 23:43:12 +0000 |
commit | 85eb608c7a602f971f779106c812b48f6c2cd030 (patch) | |
tree | f4fac8838c46fea222fb760ba9bfc0c199ab42b9 /src/xine-engine/spu_decoder.c | |
parent | 6f8f8cd72c2be8bf0b2404b8a0e9034b25f7e882 (diff) | |
download | xine-lib-85eb608c7a602f971f779106c812b48f6c2cd030.tar.gz xine-lib-85eb608c7a602f971f779106c812b48f6c2cd030.tar.bz2 |
Make SPU decode use Video decoder thread instead of it's own thread.
CVS patchset: 274
CVS date: 2001/07/13 23:43:12
Diffstat (limited to 'src/xine-engine/spu_decoder.c')
-rw-r--r-- | src/xine-engine/spu_decoder.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xine-engine/spu_decoder.c b/src/xine-engine/spu_decoder.c index c4246e622..68036e6f8 100644 --- a/src/xine-engine/spu_decoder.c +++ b/src/xine-engine/spu_decoder.c @@ -19,7 +19,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: spu_decoder.c,v 1.5 2001/07/08 18:15:54 guenter Exp $ + * $Id: spu_decoder.c,v 1.6 2001/07/13 23:43:13 jcdutton Exp $ * * functions that implement spu decoding @@ -127,6 +127,8 @@ void *spu_decoder_loop (void *this_gen) { void spu_decoder_init (xine_t *this) { +/* FIXME: Tempory disable to test SPU in VIDEO Thread */ + return; this->spu_fifo = fifo_buffer_new (1500, 4096); printf ("spu_decoder_init: thread starting %p\n",this->video_out); @@ -139,7 +141,9 @@ void spu_decoder_shutdown (xine_t *this) { void *p; /* this->spu_fifo->clear(this->spu_fifo); */ - +/* FIXME: Tempory disable to test SPU in VIDEO Thread */ + return; + buf = this->spu_fifo->buffer_pool_alloc (this->spu_fifo); buf->type = BUF_CONTROL_QUIT; this->spu_fifo->put (this->spu_fifo, buf); |