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

  /external/libvpx/vp8/encoder/
encodemb.c 277 int rdmult; local
313 rdmult = (mb->rdmult << 2)*err_mult;
352 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
353 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
356 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);
357 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);
418 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
419 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
422 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0)
    [all...]
block.h 83 int rdmult; member in struct:__anon5118
pickinter.c 201 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate, distortion);
223 int error = RD_ESTIMATE(mb->rdmult, mb->rddiv, cost, 0); // Rd estimate for the cost of the block prediction mode
632 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate2, distortion2);
655 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate2, distortion2);
799 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate2, distortion2);
ethreading.c 244 z->rdmult = x->rdmult;
396 mb->rdmult = cpi->RDMULT;
rdopt.c 238 cpi->RDMULT = (int)(rdconst * (capped_q * capped_q));
250 cpi->RDMULT = (int)(rdconst * (modq * modq));
256 cpi->RDMULT += (cpi->RDMULT * rd_iifactor[31]) >> 4;
258 cpi->RDMULT += (cpi->RDMULT * rd_iifactor[cpi->next_iiratio]) >> 4;
261 if (cpi->RDMULT < 125)
262 cpi->RDMULT = 125;
264 cpi->mb.errorperbit = (cpi->RDMULT / 100);
295 if (cpi->RDMULT > 1000
    [all...]
encodeframe.c 651 x->rdmult = cpi->RDMULT;
655 // 2 Pass - Possibly set Rdmult based on last frame distortion + this frame target bits or other metrics
659 //x->rdmult = ((cpi->last_frame_distortion * 256)/cpi->common.MBs)/ cpi->target_bits_per_mb;
660 x->rdmult = (int)(cpi->RDMULT * cpi->rate_correction_factor);
663 x->rdmult = cpi->RDMULT; */
664 //x->rdmult = (int)(cpi->RDMULT * pow( (cpi->rate_correction_factor * 2.0), 0.75 ))
    [all...]

Completed in 65 milliseconds