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

  /external/libvpx/vp8/encoder/
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...]
onyx_int.h 314 int RDMULT;
ethreading.c 244 z->rdmult = x->rdmult;
396 mb->rdmult = cpi->RDMULT;
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 90 milliseconds