Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c896 double power_term; in calc_correction_factor() local
901 power_term = pt_low + (Q * 0.01); in calc_correction_factor()
902 power_term = (power_term > pt_high) ? pt_high : power_term; in calc_correction_factor()
908 correction_factor = pow(error_term, power_term); in calc_correction_factor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c1562 double power_term; in calc_correction_factor() local
1567 power_term = in calc_correction_factor()
1572 if (power_term < 1.0) assert(error_term >= 0.0); in calc_correction_factor()
1574 return fclamp(pow(error_term, power_term), 0.05, 5.0); in calc_correction_factor()