Browse Source

ratecontrol: estimate twice the qscale values

This had been the fix used by Michael Niedermayer to solve the
ratecontrol convergence issue.
tags/n0.9
Luca Barbato 14 years ago
parent
commit
fe896ec2f9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/ratecontrol.c

+ 2
- 2
libavcodec/ratecontrol.c View File

@@ -862,8 +862,8 @@ static int init_pass2(MpegEncContext *s)
/* find qscale */
for(i=0; i<rcc->num_entries; i++){
RateControlEntry *rce= &rcc->entry[i];
qscale[i]= get_qscale(s, &rcc->entry[i], rate_factor, i);
rcc->last_qscale_for[rce->pict_type] = qscale[i];
double q = get_qscale(s, &rcc->entry[i], rate_factor, i);
qscale[i] = get_diff_limited_q(s, rce, q);
}
assert(filter_size%2==1);



Loading…
Cancel
Save