lavc/libx264: Cast bit_rate to int64_t to avoid an integer overflow.

Fixes ticket #8071.
This commit is contained in:
Carl Eugen Hoyos 2019-08-10 17:10:58 +02:00
parent 57987deefc
commit 4b1687f23c
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
if (avctx->max_b_frames < 0)
avctx->max_b_frames = 0;
avctx->bit_rate = x4->params.rc.i_bitrate*1000;
avctx->bit_rate = x4->params.rc.i_bitrate*1000LL;
x4->enc = x264_encoder_open(&x4->params);
if (!x4->enc)