summaryrefslogtreecommitdiff
path: root/src/libspudec/xine_decoder.c
diff options
context:
space:
mode:
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);
+ }
}
}