Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Gloger <wmglo@dent.med.uni-muenchen.de>2010-02-12 00:54:09 +0300
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-02-12 00:54:09 +0300
commit23b361bacaa73e40a55e1ba48440abefb274bf95 (patch)
tree1b5970c53c4bdc438ce303636ec96651f9f356c4 /ffmpeg.c
parenta768816c33571bdd20d6cb3ab7d9a76e31ed37b6 (diff)
Remove recording_time check which is no longer necessary after r21687.
Patch by Wolfram Gloger, wmglo A dent D med D uni-muenchen D de Originally committed as revision 21760 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 764453070e..cb53bfc715 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2252,10 +2252,6 @@ static int av_encode(AVFormatContext **output_files,
break;
}
- /* finish if recording time exhausted */
- if (opts_min >= (recording_time / 1000000.0))
- break;
-
/* finish if limit size exhausted */
if (limit_filesize != 0 && limit_filesize < url_ftell(output_files[0]->pb))
break;