Commit 4d17179b authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: fix printing INT64_MIN pts at the end

Fixes Ticket3427
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6c47a4e9
......@@ -1280,7 +1280,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
vid = 1;
}
/* compute min output value */
if ((is_last_report || !ost->finished) && ost->st->pts.val != AV_NOPTS_VALUE)
if (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));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment