Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c2651 FIRSTPASS_STATS local_next_frame; in test_candidate_kf() local
2658 memcpy(&local_next_frame, next_frame, sizeof(*next_frame)); in test_candidate_kf()
2666 …next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / DOUBLE_DIVIDE_CHECK(local_next_frame.c… in test_candidate_kf()
2672 if (local_next_frame.pcnt_inter > 0.85) in test_candidate_kf()
2673 decay_accumulator = decay_accumulator * local_next_frame.pcnt_inter; in test_candidate_kf()
2675 … decay_accumulator = decay_accumulator * ((0.85 + local_next_frame.pcnt_inter) / 2.0); in test_candidate_kf()
2681 if ((local_next_frame.pcnt_inter < 0.05) || in test_candidate_kf()
2683 (((local_next_frame.pcnt_inter - in test_candidate_kf()
2684 local_next_frame.pcnt_neutral) < 0.20) && in test_candidate_kf()
2687 (local_next_frame.intra_error < 200) in test_candidate_kf()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2213 FIRSTPASS_STATS local_next_frame = *next_frame; in test_candidate_kf() local
2220 double next_iiratio = (BOOST_FACTOR * local_next_frame.intra_error / in test_candidate_kf()
2221 DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)); in test_candidate_kf()
2227 if (local_next_frame.pcnt_inter > 0.85) in test_candidate_kf()
2228 decay_accumulator *= local_next_frame.pcnt_inter; in test_candidate_kf()
2230 decay_accumulator *= (0.85 + local_next_frame.pcnt_inter) / 2.0; in test_candidate_kf()
2236 if ((local_next_frame.pcnt_inter < 0.05) || in test_candidate_kf()
2238 (((local_next_frame.pcnt_inter - in test_candidate_kf()
2239 local_next_frame.pcnt_neutral) < 0.20) && in test_candidate_kf()
2242 (local_next_frame.intra_error < 200)) { in test_candidate_kf()
[all …]