[Ffmpeg-cvslog] r8547 - trunk/ffmpeg.c
bcoudurier
subversion
Thu Mar 29 13:13:29 CEST 2007
Author: bcoudurier
Date: Thu Mar 29 13:13:29 2007
New Revision: 8547
Modified:
trunk/ffmpeg.c
Log:
typo, fix -fs
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Thu Mar 29 13:13:29 2007
@@ -1874,7 +1874,7 @@ static int av_encode(AVFormatContext **o
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 */
More information about the ffmpeg-cvslog
mailing list