diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-08 18:15:54 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-08 18:15:54 +0000 |
commit | c980a592bd835f2c0826e4f0638cef3fabd70ee7 (patch) | |
tree | ecf5e9adcd28cabe0d59e0842780a1dbb3cc0633 /src/xine-engine/spu_decoder.c | |
parent | fbf6214d84dbed2b9e22da164748eca8c762cb82 (diff) | |
download | xine-lib-c980a592bd835f2c0826e4f0638cef3fabd70ee7.tar.gz xine-lib-c980a592bd835f2c0826e4f0638cef3fabd70ee7.tar.bz2 |
subtitle patches from james
CVS patchset: 259
CVS date: 2001/07/08 18:15:54
Diffstat (limited to 'src/xine-engine/spu_decoder.c')
-rw-r--r-- | src/xine-engine/spu_decoder.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xine-engine/spu_decoder.c b/src/xine-engine/spu_decoder.c index 047f9b90d..c4246e622 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.4 2001/07/04 20:32:29 uid32519 Exp $ + * $Id: spu_decoder.c,v 1.5 2001/07/08 18:15:54 guenter Exp $ * * functions that implement spu decoding @@ -57,6 +57,7 @@ void *spu_decoder_loop (void *this_gen) { this->spu_finished = 0; pthread_mutex_unlock (&this->xine_lock); +/* FIXME: I don't think we need spu_track_map. */ for (i=0 ; i<50; i++) this->spu_track_map[0] = 0; @@ -100,7 +101,6 @@ void *spu_decoder_loop (void *this_gen) { int streamtype = (buf->type>>16) & 0xFF; decoder = this->spu_decoder_plugins [streamtype]; - printf("SPU DECODER: %p\n",decoder); if (decoder) { if (this->cur_spu_decoder_plugin != decoder) { @@ -112,7 +112,6 @@ void *spu_decoder_loop (void *this_gen) { this->cur_spu_decoder_plugin->init (this->cur_spu_decoder_plugin, this->video_out); } - printf ("spu_decoder: decoder data sent\n"); decoder->decode_data (decoder, buf); } } |