diff --git a/ffmpeg.c b/ffmpeg.c index 58308c9c318b05a66ce828fb523200cd9905a6c4..a980303a73f9db660a1c5a19430bd1e3963b1e8f 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1154,7 +1154,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti vid = 1; } /* compute min output value */ - if (!ost->finished && ost->st->pts.val != AV_NOPTS_VALUE) + if ((is_last_report || !ost->finished) && ost->st->pts.val != AV_NOPTS_VALUE) pts = FFMAX(pts, av_rescale_q(ost->st->pts.val, ost->st->time_base, AV_TIME_BASE_Q)); }