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:
James Zern 2013-11-03 00:28:56 +01:00 committed by Michael Niedermayer
parent 50f52a5498
commit 23c03ac91e
1 changed files with 1 additions and 1 deletions

View File

@ -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) {