[MPlayer-cvslog] CVS: main/libmpdemux demux_mov.c,1.129,1.130

Reimar Döffinger CVS syncmail at mplayerhq.hu
Fri Sep 16 13:05:31 CEST 2005


CVS change done by Reimar Döffinger CVS

Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv5198

Modified Files:
	demux_mov.c 
Log Message:
Wrong editlist handling: end pts must be included.
Fixes another BBC sample (why is it always BBC samples that break MPlayer??):
http://images.apple.com/movies/us/hd_gallery/gl1800/720p/bbc-africa_m720p.mov


Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mov.c,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- demux_mov.c	2 Sep 2005 08:32:32 -0000	1.129
+++ demux_mov.c	16 Sep 2005 11:05:29 -0000	1.130
@@ -276,7 +276,7 @@
 	    e_pts+=el->dur;
 	    // find end sample
 	    for(;sample<trak->samples_size;sample++){
-		if(pts<=trak->samples[sample].pts) break;
+		if(pts<trak->samples[sample].pts) break;
 	    }
 	    el->frames=sample-el->start_sample;
 	    frame+=el->frames;




More information about the MPlayer-cvslog mailing list