diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-10-20 20:13:08 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-10-20 20:13:08 +0000 |
commit | 058e3bd311b75c2a380780dac16abd712c92e2a6 (patch) | |
tree | dad4da6fd73e83f5d82ef5168e06294bd05cf701 /src/xine-engine/video_decoder.c | |
parent | c82adbfa283fb2d7c18987857972e19902e44070 (diff) | |
download | xine-lib-058e3bd311b75c2a380780dac16abd712c92e2a6.tar.gz xine-lib-058e3bd311b75c2a380780dac16abd712c92e2a6.tar.bz2 |
Decide which stream to use in libspudec instead of video_decoder.c
Add support for hiding menus.
CVS patchset: 843
CVS date: 2001/10/20 20:13:08
Diffstat (limited to 'src/xine-engine/video_decoder.c')
-rw-r--r-- | src/xine-engine/video_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 182594930..ad06a7bda 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.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: video_decoder.c,v 1.57 2001/10/20 02:01:51 guenter Exp $ + * $Id: video_decoder.c,v 1.58 2001/10/20 20:13:08 jcdutton Exp $ * */ @@ -120,14 +120,14 @@ void *video_decoder_loop (void *this_gen) { profiler_start_count (prof_spu_decode); /* now, decode this buffer if it's the right track */ - if ( (buf->type & 0xFFFF)== this->spu_channel) { +// if ( (buf->type & 0xFFFF)== this->spu_channel) { spu_decoder = update_spu_decoder (this, buf->type); if (spu_decoder) spu_decoder->decode_data (spu_decoder, buf); - } +// } profiler_stop_count (prof_spu_decode); break; |