Home | History | Annotate | Download | only in encoder

Lines Matching refs:next_iiratio

125     //double next_iiratio;
138 next_iiratio = next_frame.intra_error / DOUBLE_DIVIDE_CHECK(next_frame.coded_error);
139 next_iiratio = ( next_iiratio < 1.0 ) ? 1.0 : (next_iiratio > 20.0) ? 20.0 : next_iiratio;
140 sum_iiratio += next_iiratio;
1956 cpi->next_iiratio = next_frame.intra_error /
2041 double next_iiratio;
2051 next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)) ;
2053 if (next_iiratio > RMAX)
2054 next_iiratio = RMAX;
2065 boost_score += (decay_accumulator * next_iiratio);
2069 (next_iiratio < 1.5) ||
2070 ((local_next_frame.pcnt_inter < 0.20) && (next_iiratio < 3.0)) ||