diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-01-03 23:56:44 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-01-03 23:56:44 +0000 |
commit | 0beb1f0dc00dc77899abda18b0d61b09f03303f4 (patch) | |
tree | beac0365afe6cca068b86ab263bca4591e1cfb1f /src/libspudec/xine_decoder.c | |
parent | a64f5688e458002bd9c87fe51a0b36980190cbab (diff) | |
download | xine-lib-0beb1f0dc00dc77899abda18b0d61b09f03303f4.tar.gz xine-lib-0beb1f0dc00dc77899abda18b0d61b09f03303f4.tar.bz2 |
Starting to add NAV packet processing.
CVS patchset: 1330
CVS date: 2002/01/03 23:56:44
Diffstat (limited to 'src/libspudec/xine_decoder.c')
-rw-r--r-- | src/libspudec/xine_decoder.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c index 8a8763207..a75c6b7d5 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.45 2001/12/12 15:05:37 jcdutton Exp $ + * $Id: xine_decoder.c,v 1.46 2002/01/03 23:56:44 jcdutton Exp $ * * stuff needed to turn libspu into a xine decoder plugin */ @@ -141,9 +141,8 @@ static void spu_process (spudec_decoder_t *this, uint32_t stream_id) { * For subtitles, open event. * For menus, store it for later. */ - - if ((this->xine->spu_channel != stream_id) && - (this->state.menu == 0) ) { +/* spu_channel is now set based on whether we are in the menu or not. */ + if (this->xine->spu_channel != stream_id) { #ifdef LOG_DEBUG printf ("spu: Dropping SPU channel %d\n", stream_id); #endif |