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

  /external/libvpx/libvpx/vp9/encoder/
vp9_rd.c 238 // range of values used for cpi->sf.thresh_mult[].
244 rd->threshes[segment_id][bsize][i] = rd->thresh_mult[i] < thresh_max
245 ? rd->thresh_mult[i] * t / 4
595 rd->thresh_mult[i] = cpi->oxcf.mode == BEST ? -500 : 0;
598 rd->thresh_mult[THR_NEARESTMV] = 300;
599 rd->thresh_mult[THR_NEARESTG] = 300;
600 rd->thresh_mult[THR_NEARESTA] = 300;
602 rd->thresh_mult[THR_NEARESTMV] = 0;
603 rd->thresh_mult[THR_NEARESTG] = 0;
604 rd->thresh_mult[THR_NEARESTA] = 0
643 static const int thresh_mult[2][MAX_REFS] = { local
    [all...]
vp9_rd.h 99 // Thresh_mult is used to set a threshold for the rd score. A higher value
103 int thresh_mult[MAX_MODES]; member in struct:RD_OPT
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 764 for (i = 0; i < MAX_MODES; ++i) sf->thresh_mult[i] = 0;
782 sf->thresh_mult[THR_ZERO1] = sf->thresh_mult[THR_NEAREST1] =
783 sf->thresh_mult[THR_NEAR1] = sf->thresh_mult[THR_DC] = 0; /* always */
785 sf->thresh_mult[THR_ZERO2] = sf->thresh_mult[THR_ZERO3] =
786 sf->thresh_mult[THR_NEAREST2] = sf->thresh_mult[THR_NEAREST3] =
787 sf->thresh_mult[THR_NEAR2] = sf->thresh_mult[THR_NEAR3]
    [all...]
onyx_int.h 169 int thresh_mult[MAX_MODES]; member in struct:__anon24707
rdopt.c 214 if (cpi->sf.thresh_mult[i] < INT_MAX) {
215 x->rd_threshes[i] = cpi->sf.thresh_mult[i] * q / 100;
226 if (cpi->sf.thresh_mult[i] < (INT_MAX / q)) {
227 x->rd_threshes[i] = cpi->sf.thresh_mult[i] * q;
    [all...]

Completed in 528 milliseconds