mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
libvpxenc: allow qmax of 0
this is valid for both vp8 & vp9 and necessary for lossless in the latter Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
50f52a5498
commit
23c03ac91e
1 changed files with 1 additions and 1 deletions
|
|
@ -320,7 +320,7 @@ static av_cold int vpx_init(AVCodecContext *avctx,
|
|||
|
||||
if (avctx->qmin >= 0)
|
||||
enccfg.rc_min_quantizer = avctx->qmin;
|
||||
if (avctx->qmax > 0)
|
||||
if (avctx->qmax >= 0)
|
||||
enccfg.rc_max_quantizer = avctx->qmax;
|
||||
|
||||
if (enccfg.rc_end_usage == VPX_CQ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue