Home | History | Annotate | Download | only in encoder

Lines Matching refs:est_max_qcorrection_factor

871         //if ( cpi->est_max_qcorrection_factor > rolling_ratio )
873 //cpi->est_max_qcorrection_factor *= adjustment_rate;
874 cpi->est_max_qcorrection_factor -= 0.005;
875 //else if ( cpi->est_max_qcorrection_factor < rolling_ratio )
877 cpi->est_max_qcorrection_factor += 0.005;
879 //cpi->est_max_qcorrection_factor /= adjustment_rate;
881 cpi->est_max_qcorrection_factor = (cpi->est_max_qcorrection_factor < 0.1) ? 0.1 : (cpi->est_max_qcorrection_factor > 10.0) ? 10.0 : cpi->est_max_qcorrection_factor;
912 bits_per_mb_at_this_q = (int)(.5 + correction_factor * speed_correction * cpi->est_max_qcorrection_factor * cpi->section_max_qfactor * (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0);
913 //bits_per_mb_at_this_q = (int)(.5 + correction_factor * speed_correction * cpi->est_max_qcorrection_factor * (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0);
984 bits_per_mb_at_this_q = (int)(.5 + correction_factor * speed_correction * cpi->est_max_qcorrection_factor * (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0);
2102 cpi->est_max_qcorrection_factor = 1.0;