Home | History | Annotate | Download | only in encoder

Lines Matching refs:intra_error

151         next_iiratio = next_frame.intra_error / DOUBLE_DIVIDE_CHECK(next_frame.coded_error);
304 stats->intra_error,
338 section->intra_error = 0.0;
358 section->intra_error += frame->intra_error;
380 section->intra_error /= section->count;
500 long long intra_error = 0;
586 intra_error += (long long)this_error;
752 fps.intra_error = intra_error >> 8;
805 ((cpi->this_frame_stats->intra_error / cpi->this_frame_stats->coded_error) > 2.0))
1121 clip_iiratio = cpi->total_stats->intra_error /
1178 cpi->total_intra_error_left = cpi->total_stats->intra_error;
1215 IIRatio = this_frame.intra_error / DOUBLE_DIVIDE_CHECK(this_frame.coded_error);
1463 ( next_frame.intra_error /
1466 if (next_frame.intra_error > cpi->gf_intra_err_min)
1467 r = (IIKFACTOR2 * next_frame.intra_error /
1884 sectionstats.intra_error /
1887 Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
1983 this_frame_intra_error = this_frame.intra_error;
2090 cpi->next_iiratio = next_frame.intra_error /
2182 ((this_frame->intra_error / DOUBLE_DIVIDE_CHECK(this_frame->coded_error)) < 2.5) &&
2184 (fabs(last_frame->intra_error - this_frame->intra_error) / DOUBLE_DIVIDE_CHECK(this_frame->intra_error) > .40) ||
2185 ((next_frame->intra_error / DOUBLE_DIVIDE_CHECK(next_frame->coded_error)) > 3.5)
2209 next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)) ;
2232 (local_next_frame.intra_error < 200)
2314 kf_group_intra_err += this_frame->intra_error;
2393 kf_group_intra_err += tmp_frame.intra_error;
2416 kf_group_intra_err += this_frame->intra_error;
2505 if (next_frame.intra_error > cpi->kf_intra_err_min)
2506 r = (IIKFACTOR2 * next_frame.intra_error /
2548 cpi->section_intra_rating = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
2550 Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error);
2722 double group_iiratio = (kf_group_intra_err - first_frame.intra_error) / (kf_group_coded_err - first_frame.coded_error);