提交 4b1687f2 编写于 作者: C Carl Eugen Hoyos

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

Fixes ticket #8071.
上级 57987dee
......@@ -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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册