mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libvpxenc: fix division by zero
Reported-by: thresh Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c581cb4e4f
commit
d472453efd
@ -273,6 +273,7 @@ static av_cold int vp8_init(AVCodecContext *avctx)
|
||||
|
||||
//0-100 (0 => CBR, 100 => VBR)
|
||||
enccfg.rc_2pass_vbr_bias_pct = round(avctx->qcompress * 100);
|
||||
if (avctx->bit_rate)
|
||||
enccfg.rc_2pass_vbr_minsection_pct =
|
||||
avctx->rc_min_rate * 100LL / avctx->bit_rate;
|
||||
if (avctx->rc_max_rate)
|
||||
|
Loading…
Reference in New Issue
Block a user