summaryrefslogtreecommitdiff
path: root/src/libspudec/xine_decoder.c
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-11-30 17:35:32 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-11-30 17:35:32 +0000
commitb6797395ab7e36b8365ba12c945266e0359972ee (patch)
tree1afce8ff99d16e0e0b1981bfa4e67877d6cd9249 /src/libspudec/xine_decoder.c
parent99d9a497fdce00a6ff4023fd0f92850feaa293cb (diff)
downloadxine-lib-b6797395ab7e36b8365ba12c945266e0359972ee.tar.gz
xine-lib-b6797395ab7e36b8365ba12c945266e0359972ee.tar.bz2
Improve button highlights.
CVS patchset: 1144 CVS date: 2001/11/30 17:35:32
Diffstat (limited to 'src/libspudec/xine_decoder.c')
-rw-r--r--src/libspudec/xine_decoder.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c
index 8bd4919cc..b490ebe77 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.39 2001/11/30 16:19:58 jcdutton Exp $
+ * $Id: xine_decoder.c,v 1.40 2001/11/30 17:35:32 jcdutton Exp $
*
* stuff needed to turn libspu into a xine decoder plugin
*/
@@ -281,7 +281,11 @@ 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) {
- spu_process(this,stream_id);
+ /* Testing menus */
+ if(stream_id == 0) {
+ /* End testing menus */
+ spu_process(this,stream_id);
+ }
}
}