HomeSort by relevance Sort by last modified time
    Searched refs:rdmult (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
encodemb.c 241 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, rddiv, rate0, error0)
    [all...]
block.h 94 int rdmult; member in struct:macroblock
  /external/libvpx/libvpx/vp8/encoder/
encodemb.c 241 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, rddiv, rate0, error0)
    [all...]
block.h 94 int rdmult; member in struct:macroblock
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
encodemb.c 241 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, rddiv, rate0, error0)
    [all...]
block.h 94 int rdmult; member in struct:macroblock
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_block.h 69 int rdmult; member in struct:macroblock
vp9_rd.c 141 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...]
vp9_aq_cyclicrefresh.c 38 int rdmult; member in struct:CYCLIC_REFRESH
254 cr->rdmult = vp9_compute_rd_mult(cpi, qindex2);
323 return cr->rdmult;
vp9_rdopt.c 431 rd1 = RDCOST(x->rdmult, x->rddiv, args->rate, args->dist);
432 rd2 = RDCOST(x->rdmult, x->rddiv, 0, args->sse);
551 rd[n][0] = rd[n][1] = RDCOST(x->rdmult, x->rddiv, s1, d[n]);
553 rd[n][0] = RDCOST(x->rdmult, x->rddiv, r[n][0] + s0, d[n]);
554 rd[n][1] = RDCOST(x->rdmult, x->rddiv, r[n][1] + s0, d[n]);
711 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd)
726 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd)
735 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
827 return RDCOST(mb->rdmult, mb->rddiv, cost, total_distortion);
871 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion)
    [all...]
vp9_encodemb.c 80 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;
vp9_pickmode.c 180 rv = !(RDCOST(x->rdmult, x->rddiv, (*rate_mv + rate_mode), 0) >
444 const int64_t inter_mode_thresh = RDCOST(x->rdmult, x->rddiv,
608 cost = RDCOST(x->rdmult, x->rddiv,
651 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);
660 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);
746 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);
vp9_encodeframe.c 173 x->rdmult = cpi->rd.RDMULT;
739 // Save rdmult before it might be changed, so it can be restored later.
740 orig_rdmult = x->rdmult;
758 x->rdmult = (int)round(x->rdmult * rdmult_ratio);
765 x->rdmult += ((x->rdmult * (complexity - 128)) / 256);
769 // If segment 1, use rdmult for that segment.
771 x->rdmult = vp9_cyclic_refresh_get_rdmult(cpi->cyclic_refresh)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 39 int rdmult; member in struct:CYCLIC_REFRESH
254 cr->rdmult = vp9_compute_rd_mult(cpi, qindex2);
323 return cr->rdmult;
vp9_pickmode.c 231 const int64_t inter_mode_thresh = RDCOST(x->rdmult, x->rddiv,
322 if (RDCOST(x->rdmult, x->rddiv, rate_mv + rate_mode, 0) > best_rd)
353 tmp_rdcost1 = RDCOST(x->rdmult, x->rddiv,
361 tmp_rdcost2 = RDCOST(x->rdmult, x->rddiv,
369 tmp_rdcost3 = RDCOST(x->rdmult, x->rddiv,
396 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);
427 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);
vp9_rdopt.c 224 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;
284 cpi->RDMULT = vp9_compute_rd_mult(cpi, cm->base_qindex + cm->y_dc_delta_q);
286 x->errorperbit = cpi->RDMULT / RD_MULT_EPB_RATIO;
679 rd1 = RDCOST(x->rdmult, x->rddiv, args->rate, args->dist);
680 rd2 = RDCOST(x->rdmult, x->rddiv, 0, args->sse)
    [all...]
vp9_encodemb.c 87 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;
vp9_block.h 53 int rdmult; member in struct:__anon8631
107 int rdmult; member in struct:macroblock
vp9_encodeframe.c 250 x->rdmult = cpi->RDMULT;
801 x->rdmult += *(x->mb_activity_ptr) * (x->rdmult >> 2);
802 x->errorperbit = x->rdmult * 100 / (110 * x->rddiv);
811 x->rdmult = (unsigned int) (((int64_t) x->rdmult * b + (a >> 1)) / a);
812 x->errorperbit = x->rdmult * 100 / (110 * x->rddiv);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_cyclicrefresh.c 39 int rdmult; member in struct:CYCLIC_REFRESH
254 cr->rdmult = vp9_compute_rd_mult(cpi, qindex2);
323 return cr->rdmult;
vp9_rdopt.c 224 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;
284 cpi->RDMULT = vp9_compute_rd_mult(cpi, cm->base_qindex + cm->y_dc_delta_q);
286 x->errorperbit = cpi->RDMULT / RD_MULT_EPB_RATIO;
679 rd1 = RDCOST(x->rdmult, x->rddiv, args->rate, args->dist);
680 rd2 = RDCOST(x->rdmult, x->rddiv, 0, args->sse)
    [all...]
vp9_encodemb.c 87 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;
vp9_block.h 53 int rdmult; member in struct:__anon19814
107 int rdmult; member in struct:macroblock
vp9_encodeframe.c 250 x->rdmult = cpi->RDMULT;
817 x->rdmult += *(x->mb_activity_ptr) * (x->rdmult >> 2);
818 x->errorperbit = x->rdmult * 100 / (110 * x->rddiv);
827 x->rdmult = (unsigned int) (((int64_t) x->rdmult * b + (a >> 1)) / a);
828 x->errorperbit = x->rdmult * 100 / (110 * x->rddiv);
    [all...]
vp9_pickmode.c 228 const int64_t inter_mode_thresh = RDCOST(x->rdmult, x->rddiv,
327 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);
356 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist);

Completed in 241 milliseconds

1 2