1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-01 00:54:33 +02:00

set avi fsize to INT64_MAX if riff tag end is not set and file size is not available

Originally committed as revision 18052 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-03-19 21:57:14 +00:00
parent 3a5601885b
commit 876578914b

View File

@ -260,7 +260,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
avi->fsize = url_fsize(pb); avi->fsize = url_fsize(pb);
if(avi->fsize<=0) if(avi->fsize<=0)
avi->fsize= avi->riff_end; avi->fsize= avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
/* first list tag */ /* first list tag */
stream_index = -1; stream_index = -1;