Searched defs:rdmult (Results 1 - 9 of 9) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.h50 int rdmult; member in struct:CYCLIC_REFRESH
H A Dvp9_quantize.c273 const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q); local
305 set_error_per_bit(x, rdmult);
H A Dvp9_rd.h180 static INLINE void set_error_per_bit(MACROBLOCK *x, int rdmult) { argument
181 x->errorperbit = rdmult >> RD_EPB_SHIFT;
H A Dvp9_block.h84 // The equivalent error at the current rdmult of one whole bit (not one
94 int rdmult; member in struct:macroblock
H A Dvp9_encodemb.c68 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0); \
69 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1); \
117 const int64_t rdmult = ((int64_t)mb->rdmult * plane_rd_mult[ref][type]) >> 1; local
H A Dvp9_rd.c152 int64_t rdmult = 0; local
154 case VPX_BITS_8: rdmult = 88 * q * q / 24; break;
155 case VPX_BITS_10: rdmult = ROUND_POWER_OF_TWO(88 * q * q / 24, 4); break;
156 case VPX_BITS_12: rdmult = ROUND_POWER_OF_TWO(88 * q * q / 24, 8); break;
162 int64_t rdmult = 88 * q * q / 24; local
164 return rdmult;
168 int64_t rdmult = vp9_compute_rd_mult_based_on_qindex(cpi, qindex); local
175 rdmult = (rdmult * rd_frame_type_factor[frame_type]) >> 7;
176 rdmult
[all...]
H A Dvp9_temporal_filter.c702 int rdmult; local
782 rdmult = (int)vp9_compute_rd_mult_based_on_qindex(cpi, ARNR_FILT_QINDEX);
783 if (rdmult < 1) rdmult = 1;
784 set_error_per_bit(&cpi->td.mb, rdmult);
/external/libvpx/libvpx/vp8/encoder/
H A Dblock.h88 int rdmult; member in struct:macroblock
H A Dencodemb.c159 int rdmult; local
187 rdmult = mb->rdmult * err_mult;
189 rdmult = (rdmult * 9) >> 4;
225 rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);
226 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);
228 rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);
229 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);
282 rd_cost0 = RDCOST(rdmult, rddi
[all...]

Completed in 146 milliseconds