Searched refs:n_log2 (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rd.h | 157 void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n_log2, 161 unsigned int n_log2[MAX_MB_PLANE],
|
D | vp9_rd.c | 483 void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n_log2, in vp9_model_rd_from_var_lapndz() argument 498 (((uint64_t)qstep * qstep << (n_log2 + 10)) + (var >> 1)) / var; in vp9_model_rd_from_var_lapndz() 501 *rate = ROUND_POWER_OF_TWO(r_q10 << n_log2, 10 - VP9_PROB_COST_SHIFT); in vp9_model_rd_from_var_lapndz() 509 unsigned int n_log2[MAX_MB_PLANE], in vp9_model_rd_from_var_lapndz_vec() 516 (((uint64_t)qstep[i] * qstep[i] << (n_log2[i] + 10)) + (var[i] >> 1)) / in vp9_model_rd_from_var_lapndz_vec() 523 ROUND_POWER_OF_TWO(r_q10[i] << n_log2[i], 10 - VP9_PROB_COST_SHIFT); in vp9_model_rd_from_var_lapndz_vec()
|
/external/libaom/libaom/av1/encoder/ |
D | rd.c | 692 void av1_model_rd_from_var_lapndz(int64_t var, unsigned int n_log2, in av1_model_rd_from_var_lapndz() argument 708 (((uint64_t)qstep * qstep << (n_log2 + 10)) + (var >> 1)) / var; in av1_model_rd_from_var_lapndz() 711 *rate = ROUND_POWER_OF_TWO(r_q10 << n_log2, 10 - AV1_PROB_COST_SHIFT); in av1_model_rd_from_var_lapndz()
|