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

  /external/libvpx/vp8/encoder/
block.h 83 int rdmult; member in struct:__anon5282
encodemb.c 264 int rdmult; local
298 rdmult = mb->rdmult << 2;
337 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
338 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
341 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);
342 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);
403 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
404 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
407 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0)
    [all...]
pickinter.c 202 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate, distortion);
224 int error = RD_ESTIMATE(mb->rdmult, mb->rddiv, cost, 0); // Rd estimate for the cost of the block prediction mode
633 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate2, distortion2);
656 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate2, distortion2);
800 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 649 x->rdmult = cpi->RDMULT;
653 // 2 Pass - Possibly set Rdmult based on last frame distortion + this frame target bits or other metrics
657 //x->rdmult = ((cpi->last_frame_distortion * 256)/cpi->common.MBs)/ cpi->target_bits_per_mb;
658 x->rdmult = (int)(cpi->RDMULT * cpi->rate_correction_factor);
661 x->rdmult = cpi->RDMULT; */
662 //x->rdmult = (int)(cpi->RDMULT * pow( (cpi->rate_correction_factor * 2.0), 0.75 ))
    [all...]

Completed in 40 milliseconds