diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-12-12 15:05:37 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-12-12 15:05:37 +0000 |
commit | aeaee879f716ab23f86520392acdb22410796c7f (patch) | |
tree | c07b6af9db26f7ea41d10ab4ab7419c2590dfa97 | |
parent | 992d41c721f9fecb51ebf12d2813223bf79590ae (diff) | |
download | xine-lib-aeaee879f716ab23f86520392acdb22410796c7f.tar.gz xine-lib-aeaee879f716ab23f86520392acdb22410796c7f.tar.bz2 |
Removed test code.
SPU stream ids other than 0 should now work.
CVS patchset: 1227
CVS date: 2001/12/12 15:05:37
-rw-r--r-- | src/libspudec/xine_decoder.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c index 0733f0c39..8a8763207 100644 --- a/src/libspudec/xine_decoder.c +++ b/src/libspudec/xine_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: xine_decoder.c,v 1.44 2001/12/09 17:10:12 miguelfreitas Exp $ + * $Id: xine_decoder.c,v 1.45 2001/12/12 15:05:37 jcdutton Exp $ * * stuff needed to turn libspu into a xine decoder plugin */ @@ -294,11 +294,14 @@ static void spudec_decode_data (spu_decoder_t *this_gen, buf_element_t *buf) { buf->content, buf->size); if(this->spu_stream_state[stream_id].ra_complete == 1) { - /* Testing menus */ - if(stream_id == 0) { - /* End testing menus */ - spu_process(this,stream_id); - } + /* + * Testing menus + * if(stream_id == 0) { + * spu_process(this,stream_id); + * } + * End testing menus + */ + spu_process(this,stream_id); } } |