Home | History | Annotate | Download | only in encoder

Lines Matching refs:prediction_error

3151         double change2 = 1.0 * abs((int)(cpi->prediction_error - cpi->last_prediction_error)) / (1 + cpi->last_prediction_error);
3156 if (10 * cpi->intra_error / (1 + cpi->prediction_error) < 15
3157 && cpi->prediction_error > minerror
3162 if (cpi->prediction_error <= 0)
3163 cpi->prediction_error = 1;
3167 (int) cpi->prediction_error,
3169 (int)((10 * cpi->intra_error) / cpi->prediction_error),
3178 cpi->last_prediction_error = cpi->prediction_error;
3180 if (10 * cpi->intra_error / (1 + cpi->prediction_error) < 15
3181 && cpi->prediction_error > minerror
4345 cpi->one_pass_frame_stats[cpi->one_pass_frame_index].frame_coded_error = (double)cpi->prediction_error;