(bug reported by dragos <iocatretine@yahoo.com> @ -users)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10623 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2003-08-15 16:36:32 +00:00
parent 75ea86e31a
commit 604f4432f3
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ int demux_asf_fill_buffer(demuxer_t *demux){
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;
}