Searched refs:n_log2 (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rd.h | 147 void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n_log2, 151 unsigned int n_log2[MAX_MB_PLANE],
|
D | vp9_rd.c | 453 void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n_log2, in vp9_model_rd_from_var_lapndz() argument 468 (((uint64_t)qstep * qstep << (n_log2 + 10)) + (var >> 1)) / var; in vp9_model_rd_from_var_lapndz() 471 *rate = ROUND_POWER_OF_TWO(r_q10 << n_log2, 10 - VP9_PROB_COST_SHIFT); in vp9_model_rd_from_var_lapndz() 479 unsigned int n_log2[MAX_MB_PLANE], in vp9_model_rd_from_var_lapndz_vec() 486 (((uint64_t)qstep[i] * qstep[i] << (n_log2[i] + 10)) + (var[i] >> 1)) / in vp9_model_rd_from_var_lapndz_vec() 493 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 | 669 void av1_model_rd_from_var_lapndz(int64_t var, unsigned int n_log2, in av1_model_rd_from_var_lapndz() argument 685 (((uint64_t)qstep * qstep << (n_log2 + 10)) + (var >> 1)) / var; in av1_model_rd_from_var_lapndz() 688 *rate = ROUND_POWER_OF_TWO(r_q10 << n_log2, 10 - AV1_PROB_COST_SHIFT); in av1_model_rd_from_var_lapndz()
|