From d1b235699809858afbc27a837f9a7565298c80d6 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 29 Mar 2007 11:39:09 +0000 Subject: 1000l, revert r8547, im too stupid Originally committed as revision 8548 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index 3cab443d1a..1a17d4f172 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1874,7 +1874,7 @@ static int av_encode(AVFormatContext **output_files, break; /* finish if limit size exhausted */ - if (limit_filesize != 0 && (limit_filesize * 1024) >= url_ftell(&output_files[0]->pb)) + if (limit_filesize != 0 && (limit_filesize * 1024) < url_ftell(&output_files[0]->pb)) break; /* read a frame from it and output it in the fifo */ -- cgit v1.2.3