Mercurial > libavcodec.hg
diff ratecontrol.c @ 932:176fd8c8e8a8 libavcodec
mb qp limits
| author | michaelni |
|---|---|
| date | Wed, 18 Dec 2002 10:09:43 +0000 |
| parents | 6bcb214d6a17 |
| children | 693a0797398f |
line wrap: on
line diff
--- a/ratecontrol.c Wed Dec 18 09:23:24 2002 +0000 +++ b/ratecontrol.c Wed Dec 18 10:09:43 2002 +0000 @@ -474,8 +474,8 @@ float cplx_sum= 0.0; float cplx_tab[s->mb_num]; float bits_tab[s->mb_num]; - const int qmin= 2; //s->avctx->mb_qmin; - const int qmax= 31; //s->avctx->mb_qmax; + const int qmin= s->avctx->mb_qmin; + const int qmax= s->avctx->mb_qmax; Picture * const pic= &s->current_picture; for(i=0; i<s->mb_num; i++){
