lavc/libx264: Cast bit_rate to int64_t to avoid an integer overflow.
Fixes ticket #8071.
This commit is contained in:
parent
57987deefc
commit
4b1687f23c
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user