Revision f07c9895 libavcodec/libvpxenc.c
libavcodec/libvpxenc.c | ||
---|---|---|
237 | 237 |
enccfg.rc_target_bitrate = av_rescale_rnd(avctx->bit_rate, 1, 1000, |
238 | 238 |
AV_ROUND_NEAR_INF); |
239 | 239 |
|
240 |
//convert [1,51] -> [0,63] |
|
241 |
enccfg.rc_min_quantizer = ((avctx->qmin * 5 + 1) >> 2) - 1; |
|
242 |
enccfg.rc_max_quantizer = ((avctx->qmax * 5 + 1) >> 2) - 1; |
|
240 |
enccfg.rc_min_quantizer = avctx->qmin; |
|
241 |
enccfg.rc_max_quantizer = avctx->qmax; |
|
243 | 242 |
enccfg.rc_dropframe_thresh = avctx->frame_skip_threshold; |
244 | 243 |
|
245 | 244 |
//_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO |
Also available in: Unified diff