diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-29 11:13:29 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-29 11:13:29 +0000 |
commit | ed057fccfcaa441888eee2ea457ac66348ce5a64 (patch) | |
tree | a61839a56002981737d83db0e43782cfd74d4c39 /ffmpeg.c | |
parent | 11979c460c2891fe2dabd40501dc7ad53fe71d46 (diff) | |
download | ffmpeg-ed057fccfcaa441888eee2ea457ac66348ce5a64.tar.gz |
typo, fix -fs
Originally committed as revision 8547 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |