Commit 7e3e6536 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/bintext: protect against potential overflow of chars_per_frame

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c9660999
......@@ -65,7 +65,7 @@ static AVStream * init_stream(AVFormatContext *s)
avpriv_set_pts_info(st, 60, bin->framerate.den, bin->framerate.num);
/* simulate tty display speed */
bin->chars_per_frame = FFMAX(av_q2d(st->time_base) * bin->chars_per_frame, 1);
bin->chars_per_frame = av_clip(av_q2d(st->time_base) * bin->chars_per_frame, 1, INT_MAX);
return st;
}
......
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