Searched defs:rdmult (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.h49 int rdmult; member in struct:CYCLIC_REFRESH
H A Dvp9_quantize.c313 const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q); local
345 x->errorperbit = rdmult >> 6;
H A Dvp9_block.h72 int rdmult; member in struct:macroblock
H A Dvp9_encodemb.c68 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);\
69 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);\
71 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);\
72 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);\
111 int64_t rdmult = mb->rdmult * plane_rd_mult[type], rddiv = mb->rddiv; local
128 rdmult = (rdmult * 9) >> 4;
H A Dvp9_rd.c155 int64_t rdmult = 0; local
158 rdmult = 88 * q * q / 24;
161 rdmult = ROUND_POWER_OF_TWO(88 * q * q / 24, 4);
164 rdmult = ROUND_POWER_OF_TWO(88 * q * q / 24, 8);
171 int64_t rdmult = 88 * q * q / 24; local
178 rdmult = (rdmult * rd_frame_type_factor[frame_type]) >> 7;
179 rdmult += ((rdmult * rd_boost_factor[boost_index]) >> 7);
181 if (rdmult <
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dblock.h94 int rdmult; member in struct:macroblock
H A Dencodemb.c193 int rdmult; local
221 rdmult = mb->rdmult * err_mult;
223 rdmult = (rdmult * 9)>>4;
263 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
264 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
267 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);
268 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);
329 rd_cost0 = RDCOST(rdmult, rddi
[all...]

Completed in 3090 milliseconds