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

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c38 int rdmult; member in struct:CYCLIC_REFRESH
254 cr->rdmult = vp9_compute_rd_mult(cpi, qindex2);
323 return cr->rdmult;
H A Dvp9_block.h69 int rdmult; member in struct:macroblock
H A Dvp9_quantize.c633 const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q); local
670 x->errorperbit = rdmult >> 6;
H A Dvp9_encodemb.c80 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);\
81 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);\
83 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);\
84 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);\
123 int64_t rdmult = mb->rdmult * plane_rd_mult[type], rddiv = mb->rddiv; local
133 rdmult = (rdmult * 9) >> 4;
H A Dvp9_rd.c141 int rdmult = 0; local
144 rdmult = 88 * q * q / 24;
147 rdmult = ROUND_POWER_OF_TWO(88 * q * q / 24, 4);
150 rdmult = ROUND_POWER_OF_TWO(88 * q * q / 24, 8);
157 int rdmult = 88 * q * q / 24; local
164 rdmult = (rdmult * rd_frame_type_factor[frame_type]) >> 7;
165 rdmult += ((rdmult * rd_boost_factor[boost_index]) >> 7);
167 return rdmult;
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c39 int rdmult; member in struct:CYCLIC_REFRESH
254 cr->rdmult = vp9_compute_rd_mult(cpi, qindex2);
323 return cr->rdmult;
H A Dvp9_quantize.c222 const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q); local
256 x->errorperbit = rdmult >> 6;
H A Dvp9_encodemb.c87 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);\
88 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);\
90 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);\
91 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);\
123 int64_t rdmult, rddiv, rd_cost0, rd_cost1; local
141 rdmult = mb->rdmult * err_mult;
143 rdmult = (rdmult * 9) >> 4;
H A Dvp9_block.h53 int rdmult; member in struct:__anon24933
107 int rdmult; member in struct:macroblock
H A Dvp9_rdopt.c224 int rdmult = 88 * q * q / 25; local
227 rdmult += (rdmult * rd_iifactor[31]) >> 4;
229 rdmult += (rdmult * rd_iifactor[cpi->twopass.next_iiratio]) >> 4;
231 return rdmult;
679 rd1 = RDCOST(x->rdmult, x->rddiv, args->rate, args->dist);
680 rd2 = RDCOST(x->rdmult, x->rddiv, 0, args->sse);
831 rd[n][0] = rd[n][1] = RDCOST(x->rdmult, x->rddiv, s1, d[n]);
833 rd[n][0] = RDCOST(x->rdmult,
870 scaled_rd_cost(int rdmult, int rddiv, int rate, int64_t dist, double scale) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dblock.h94 int rdmult; member in struct:macroblock
H A Dencodemb.c241 int rdmult; local
269 rdmult = mb->rdmult * err_mult;
271 rdmult = (rdmult * 9)>>4;
311 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
312 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
315 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);
316 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);
377 rd_cost0 = RDCOST(rdmult, rddi
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dblock.h94 int rdmult; member in struct:macroblock
H A Dencodemb.c241 int rdmult; local
276 rdmult = mb->rdmult * err_mult;
278 rdmult = (rdmult * 9)>>4;
318 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
319 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
322 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);
323 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);
384 rd_cost0 = RDCOST(rdmult, rddi
[all...]

Completed in 502 milliseconds