Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c1486 double frame_boost; in calc_frame_boost() local
1498 frame_boost = (BASELINE_ERR_PER_MB * num_mbs) / in calc_frame_boost()
1500 frame_boost = frame_boost * BOOST_FACTOR * boost_q_correction; in calc_frame_boost()
1506 frame_boost += frame_boost * (this_frame_mv_in_out * 2.0); in calc_frame_boost()
1509 frame_boost += frame_boost * (this_frame_mv_in_out / 2.0); in calc_frame_boost()
1511 return VPXMIN(frame_boost, max_boost * boost_q_correction); in calc_frame_boost()
2449 const double frame_boost = in find_next_key_frame() local
2461 boost_score += (decay_accumulator * frame_boost); in find_next_key_frame()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c1592 double frame_boost; in calc_frame_boost() local
1596 frame_boost = (IIFACTOR * this_frame->intra_error / in calc_frame_boost()
1599 frame_boost = (IIFACTOR * cpi->twopass.gf_intra_err_min / in calc_frame_boost()
1608 frame_boost += frame_boost * (this_frame_mv_in_out * 2.0); in calc_frame_boost()
1611 frame_boost += frame_boost * (this_frame_mv_in_out / 2.0); in calc_frame_boost()
1614 if (frame_boost > GF_RMAX) in calc_frame_boost()
1615 frame_boost = GF_RMAX; in calc_frame_boost()
1617 return frame_boost; in calc_frame_boost()