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

  /external/libaom/libaom/av1/encoder/
partition_strategy.h 115 x->rdmult = cpi->rd.RDMULT;
picklpf.c 195 if (best_cost_ret) *best_cost_ret = RDCOST_DBL(x->rdmult, 0, best_err);
207 cpi->td.mb.rdmult = cpi->rd.RDMULT;
rd.h 291 int RDMULT;
443 static INLINE void set_error_per_bit(MACROBLOCK *x, int rdmult) {
444 x->errorperbit = rdmult >> RD_EPB_SHIFT;
rd.c 352 int rdmult = q * q; local
353 rdmult = rdmult * 3 + (rdmult * 2 / 3);
356 case AOM_BITS_10: rdmult = ROUND_POWER_OF_TWO(rdmult, 4); break;
357 case AOM_BITS_12: rdmult = ROUND_POWER_OF_TWO(rdmult, 8); break;
362 return rdmult > 0 ? rdmult : 1
366 int64_t rdmult = av1_compute_rd_mult_based_on_qindex(cpi, qindex); local
383 int64_t rdmult = 0; local
    [all...]
pickrst.c 655 RDCOST_DBL(x->rdmult, bits_none >> 4, rusi->sse[RESTORE_NONE]);
657 RDCOST_DBL(x->rdmult, bits_sgr >> 4, rusi->sse[RESTORE_SGRPROJ]);
    [all...]
encodeframe.c 249 x->rdmult = cpi->rd.RDMULT;
614 // Save rdmult before it might be changed, so it can be restored later.
615 orig_rdmult = x->rdmult;
624 x->rdmult = set_segment_rdmult(cpi, x, mbmi->segment_id);
626 x->rdmult = set_segment_rdmult(cpi, x, mbmi->segment_id);
628 // If segment is boosted, use rdmult for that segment.
630 x->rdmult = av1_cyclic_refresh_get_rdmult(cpi->cyclic_refresh);
632 x->rdmult = x->cb_rdmult;
635 if (deltaq_mode > 0) x->rdmult = set_deltaq_rdmult(cpi, xd)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rd.h 116 int RDMULT;
186 static INLINE void set_error_per_bit(MACROBLOCK *x, int rdmult) {
187 x->errorperbit = rdmult >> RD_EPB_SHIFT;
vp9_rd.c 177 // largest dc_quant is 21387, therefore rdmult should always fit in int32_t
179 uint32_t rdmult = q * q; local
183 rdmult = rdmult * 4;
185 rdmult = rdmult * 4 + rdmult / 2;
187 rdmult = rdmult * 3;
190 rdmult = rdmult * 4
225 int rdmult = vp9_compute_rd_mult_based_on_qindex(cpi, qindex); local
230 int rdmult = local
    [all...]
vp9_encodeframe.c 286 x->rdmult = cpi->rd.RDMULT;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
rdopt.c 174 cpi->RDMULT = (int)(rdconst * (capped_q * capped_q));
186 cpi->RDMULT = (int)(rdconst * (modq * modq));
191 cpi->RDMULT += (cpi->RDMULT * rd_iifactor[31]) >> 4;
193 cpi->RDMULT +=
194 (cpi->RDMULT * rd_iifactor[cpi->twopass.next_iiratio]) >> 4;
198 cpi->mb.errorperbit = (cpi->RDMULT / 110);
211 if (cpi->RDMULT > 1000) {
213 cpi->RDMULT /= 100;
566 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion)
    [all...]
onyx_int.h 333 int RDMULT;
ethreading.c 147 x->rdmult = cpi->RDMULT;
encodeframe.c 304 x->rdmult += *(x->mb_activity_ptr) * (x->rdmult >> 2);
305 x->errorperbit = x->rdmult * 100 / (110 * x->rddiv);
316 x->rdmult = (unsigned int)(((int64_t)x->rdmult * b + (a >> 1)) / a);
317 x->errorperbit = x->rdmult * 100 / (110 * x->rddiv);
412 x->rdmult = cpi->RDMULT;
    [all...]

Completed in 415 milliseconds