diff --git a/ffmpeg.c b/ffmpeg.c
index b712c90da88d572bcd07e97ce060955e2ec38f1a..d8c7d68a4107cd2fc4d8c8d847653fc058d240a8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -699,7 +699,7 @@ void print_report(AVFormatContext **output_files,
         }
         /* compute min output value */
         pts = (double)ost->st->pts.val * os->pts_num / os->pts_den;
-        if (pts < ti1)
+        if ((pts < ti1) && (pts > 0))
             ti1 = pts;
     }
     if (ti1 < 0.01)