[Mplayer-cvslog] CVS: main/libmpdemux demux_asf.c,1.26,1.27
Arpi of Ize
arpi at mplayerhq.hu
Fri Aug 15 18:36:57 CEST 2003
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv4814
Modified Files:
demux_asf.c
Log Message:
fixes http://pot.lsd.ro/video.asf
(bug reported by dragos <iocatretine at yahoo.com> @ -users)
Index: demux_asf.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_asf.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- demux_asf.c 23 Nov 2002 10:58:08 -0000 1.26
+++ demux_asf.c 15 Aug 2003 16:36:32 -0000 1.27
@@ -144,7 +144,7 @@
demux->filepos=stream_tell(demux->stream);
// Brodcast stream have movi_start==movi_end
// Better test ?
- if((demux->movi_start != demux->movi_end) && (demux->filepos>=demux->movi_end)){
+ if((demux->movi_start < demux->movi_end) && (demux->filepos>=demux->movi_end)){
demux->stream->eof=1;
return 0;
}
More information about the MPlayer-cvslog
mailing list