From 1220837b187f78c85fe658b1d341ec400a221d41 Mon Sep 17 00:00:00 2001 From: atmos4 Date: Tue, 30 Apr 2002 19:20:34 +0000 Subject: Suggested fix by Arne Driescher git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5918 b3059339-0415-0410-9bf9-f77b7e298cf2 --- spudec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spudec.c') diff --git a/spudec.c b/spudec.c index 91089dae9c..58cfba0443 100644 --- a/spudec.c +++ b/spudec.c @@ -378,8 +378,8 @@ void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsign #if 1 // check if we have a complete packet (unfortunatelly packet_size is bad // for some disks) -// if (spu->packet_offset == spu->packet_size) - { unsigned int x=0,y; + if (spu->packet_offset == spu->packet_size){ + unsigned int x=0,y; while(x+4<=spu->packet_offset){ y=get_be16(spu->packet+x+2); // next control pointer mp_msg(MSGT_SPUDEC,MSGL_DBG2,"SPUtest: x=%d y=%d off=%d size=%d\n",x,y,spu->packet_offset,spu->packet_size); -- cgit v1.2.3