# HG changeset patch # User mosu # Date 1067526136 0 # Node ID 7edd5436337de3aaf05deab4ca859cf763ae14db # Parent a974c00c779d61422936ee5710da51533e10062d Do not display VobSubs whose timecodes are < 0 which would make all VobSubs appear from the start on upon seeking. Patch by "Reder, Uwe" . diff -r a974c00c779d -r 7edd5436337d mplayer.c --- a/mplayer.c Thu Oct 30 14:57:06 2003 +0000 +++ b/mplayer.c Thu Oct 30 15:02:16 2003 +0000 @@ -3639,7 +3639,7 @@ } if(len<=0 || !packet) break; if(timestamp < 0) timestamp = 0; - spudec_assemble(vo_spudec,packet,len,timestamp); + else spudec_assemble(vo_spudec,packet,len,timestamp); } /* detect wether the sub has changed or not */