[Mplayer-cvslog] CVS: main mplayer.c,1.734,1.735

Moritz Bunkus CVS mosu at mplayerhq.hu
Thu Oct 30 16:02:37 CET 2003


Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv16136

Modified Files:
	mplayer.c 
Log Message:
Do not display VobSubs whose timecodes are < 0 which would make all VobSubs appear from the start on upon seeking. Patch by "Reder, Uwe" <Uwe.Reder at 3SOFT.de>.

Index: mplayer.c
===================================================================
RCS file: /cvsroot/mplayer/main/mplayer.c,v
retrieving revision 1.734
retrieving revision 1.735
diff -u -r1.734 -r1.735
--- mplayer.c	23 Oct 2003 22:44:25 -0000	1.734
+++ mplayer.c	30 Oct 2003 15:02:16 -0000	1.735
@@ -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 */



More information about the MPlayer-cvslog mailing list