]> git.sesse.net Git - ffmpeg/commitdiff
Attempt to fix issue1728 and regression of issue203
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 23 Feb 2010 23:41:11 +0000 (23:41 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 23 Feb 2010 23:41:11 +0000 (23:41 +0000)
Originally committed as revision 22011 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffmpeg.c

index 9bc509d9f059bb395adb5ca3208c9eeb3428d189..db3d053e5f0f433a1f6bc6e8c4f63cddbf02daa5 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2305,7 +2305,7 @@ static int av_encode(AVFormatContext **output_files,
         }
 
         /* finish if recording time exhausted */
-        if (av_compare_ts(pkt.pts, ist->st->time_base, recording_time, (AVRational){1, 1000000}) >= 0) {
+        if (av_compare_ts(pkt.pts, ist->st->time_base, recording_time + start_time, (AVRational){1, 1000000}) >= 0) {
             ist->is_past_recording_time = 1;
             goto discard_packet;
         }