Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_firstpass.c1843 FIRSTPASS_STATS local_next_frame = *next_frame; in test_candidate_kf() local
1850 double next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / in test_candidate_kf()
1851 DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)); in test_candidate_kf()
1857 if (local_next_frame.pcnt_inter > 0.85) in test_candidate_kf()
1858 decay_accumulator *= local_next_frame.pcnt_inter; in test_candidate_kf()
1860 decay_accumulator *= (0.85 + local_next_frame.pcnt_inter) / 2.0; in test_candidate_kf()
1866 if ((local_next_frame.pcnt_inter < 0.05) || in test_candidate_kf()
1868 (((local_next_frame.pcnt_inter - in test_candidate_kf()
1869 local_next_frame.pcnt_neutral) < 0.20) && in test_candidate_kf()
1872 (local_next_frame.intra_error < 200)) { in test_candidate_kf()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dfirstpass.c2652 FIRSTPASS_STATS local_next_frame; in test_candidate_kf() local
2659 vpx_memcpy(&local_next_frame, next_frame, sizeof(*next_frame)); in test_candidate_kf()
2667 …next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / DOUBLE_DIVIDE_CHECK(local_next_frame.c… in test_candidate_kf()
2673 if (local_next_frame.pcnt_inter > 0.85) in test_candidate_kf()
2674 decay_accumulator = decay_accumulator * local_next_frame.pcnt_inter; in test_candidate_kf()
2676 … decay_accumulator = decay_accumulator * ((0.85 + local_next_frame.pcnt_inter) / 2.0); in test_candidate_kf()
2682 if ((local_next_frame.pcnt_inter < 0.05) || in test_candidate_kf()
2684 (((local_next_frame.pcnt_inter - in test_candidate_kf()
2685 local_next_frame.pcnt_neutral) < 0.20) && in test_candidate_kf()
2688 (local_next_frame.intra_error < 200) in test_candidate_kf()
[all …]