diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index a749e073a6..ed038abc9e 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -285,7 +285,7 @@ static av_cold int vpx_init(AVCodecContext *avctx, } } - if (avctx->qmin > 0) + if (avctx->qmin >= 0) enccfg.rc_min_quantizer = avctx->qmin; if (avctx->qmax > 0) enccfg.rc_max_quantizer = avctx->qmax;