Home
last modified time | relevance | path

Searched refs:local_next_frame (Results 1 – 3 of 3) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dpass2_strategy.c1161 FIRSTPASS_STATS local_next_frame = *next_frame; in test_candidate_kf() local
1168 double next_iiratio = (BOOST_FACTOR * local_next_frame.intra_error / in test_candidate_kf()
1169 DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)); in test_candidate_kf()
1174 if (local_next_frame.pcnt_inter > 0.85) in test_candidate_kf()
1175 decay_accumulator *= local_next_frame.pcnt_inter; in test_candidate_kf()
1177 decay_accumulator *= (0.85 + local_next_frame.pcnt_inter) / 2.0; in test_candidate_kf()
1183 if ((local_next_frame.pcnt_inter < 0.05) || (next_iiratio < 1.5) || in test_candidate_kf()
1184 (((local_next_frame.pcnt_inter - local_next_frame.pcnt_neutral) < in test_candidate_kf()
1188 (local_next_frame.intra_error < 200)) { in test_candidate_kf()
1195 if (EOF == input_stats(twopass, &local_next_frame)) break; in test_candidate_kf()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c2467 FIRSTPASS_STATS local_next_frame; in test_candidate_kf() local
2474 memcpy(&local_next_frame, next_frame, sizeof(*next_frame)); in test_candidate_kf()
2481 next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / in test_candidate_kf()
2482 DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)); in test_candidate_kf()
2487 if (local_next_frame.pcnt_inter > 0.85) { in test_candidate_kf()
2488 decay_accumulator = decay_accumulator * local_next_frame.pcnt_inter; in test_candidate_kf()
2491 decay_accumulator * ((0.85 + local_next_frame.pcnt_inter) / 2.0); in test_candidate_kf()
2498 if ((local_next_frame.pcnt_inter < 0.05) || (next_iiratio < 1.5) || in test_candidate_kf()
2499 (((local_next_frame.pcnt_inter - local_next_frame.pcnt_neutral) < in test_candidate_kf()
2503 (local_next_frame.intra_error < 200)) { in test_candidate_kf()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2785 FIRSTPASS_STATS local_next_frame = *next_frame; in test_candidate_kf() local
2792 double next_iiratio = (II_FACTOR * local_next_frame.intra_error / in test_candidate_kf()
2793 DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)); in test_candidate_kf()
2798 if (local_next_frame.pcnt_inter > 0.85) in test_candidate_kf()
2799 decay_accumulator *= local_next_frame.pcnt_inter; in test_candidate_kf()
2801 decay_accumulator *= (0.85 + local_next_frame.pcnt_inter) / 2.0; in test_candidate_kf()
2807 if ((local_next_frame.pcnt_inter < 0.05) || (next_iiratio < 1.5) || in test_candidate_kf()
2808 (((local_next_frame.pcnt_inter - local_next_frame.pcnt_neutral) < in test_candidate_kf()
2812 (local_next_frame.intra_error < V_LOW_INTRA)) { in test_candidate_kf()
2819 if (EOF == input_stats(twopass, &local_next_frame)) break; in test_candidate_kf()