[FFmpeg-cvslog] r14285 - trunk/ffmpeg.c

stefano subversion
Sat Jul 19 00:23:30 CEST 2008


Author: stefano
Date: Sat Jul 19 00:23:29 2008
New Revision: 14285

Log:
Make ffmpeg -t X with X<=0 transcode nothing.



Modified:
   trunk/ffmpeg.c

Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c	(original)
+++ trunk/ffmpeg.c	Sat Jul 19 00:23:29 2008
@@ -154,7 +154,7 @@ static char *subtitle_language = NULL;
 static float mux_preload= 0.5;
 static float mux_max_delay= 0.7;
 
-static int64_t recording_time = 0;
+static int64_t recording_time = INT64_MAX;
 static int64_t start_time = 0;
 static int64_t rec_timestamp = 0;
 static int64_t input_ts_offset = 0;
@@ -2020,7 +2020,7 @@ static int av_encode(AVFormatContext **o
         }
 
         /* finish if recording time exhausted */
-        if (recording_time > 0 && opts_min >= (recording_time / 1000000.0))
+        if (opts_min >= (recording_time / 1000000.0))
             break;
 
         /* finish if limit size exhausted */




More information about the ffmpeg-cvslog mailing list