Browse Source

typo, fix -fs

Originally committed as revision 8547 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 19 years ago
parent
commit
ed057fccfc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffmpeg.c

+ 1
- 1
ffmpeg.c View File

@@ -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 */


Loading…
Cancel
Save