Searched refs:zero_motion_accumulator (Results 1 – 2 of 2) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | pass2_strategy.c | 755 double zero_motion_accumulator = 1.0; in define_gf_group() local 856 zero_motion_accumulator = AOMMIN( in define_gf_group() 857 zero_motion_accumulator, get_zero_motion_factor(cpi, &next_frame)); in define_gf_group() 876 !is_almost_static(zero_motion_accumulator, in define_gf_group() 908 if (zero_motion_accumulator > MIN_ZERO_MOTION && in define_gf_group() 915 !is_almost_static(zero_motion_accumulator, twopass->kf_zeromotion_pct) && in define_gf_group() 1233 double zero_motion_accumulator = 1.0; in find_next_key_frame() local 1388 zero_motion_accumulator = AOMMIN( in find_next_key_frame() 1389 zero_motion_accumulator, get_zero_motion_factor(cpi, &next_frame)); in find_next_key_frame() 1391 zero_motion_accumulator = next_frame.pcnt_inter - next_frame.pcnt_motion; in find_next_key_frame() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_firstpass.c | 2431 double zero_motion_accumulator = 1.0; in define_gf_group() local 2566 zero_motion_accumulator = VPXMIN( in define_gf_group() 2567 zero_motion_accumulator, get_zero_motion_factor(cpi, &next_frame)); in define_gf_group() 2605 ((zero_motion_accumulator < 0.995) || (rc->source_alt_ref_active))) || in define_gf_group() 2625 if ((zero_motion_accumulator < 0.995) && allow_alt_ref && in define_gf_group() 2862 double zero_motion_accumulator = 1.0; in find_next_key_frame() local 3021 if ((i <= KF_BOOST_SCAN_MAX_FRAMES) || (zero_motion_accumulator >= 0.99)) { in find_next_key_frame() 3028 zero_motion_accumulator = VPXMIN( in find_next_key_frame() 3029 zero_motion_accumulator, get_zero_motion_factor(cpi, &next_frame)); in find_next_key_frame() 3031 zero_motion_accumulator = in find_next_key_frame() [all …]
|