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

  /external/libaom/libaom/av1/encoder/
rd.c 454 // range of values used for cpi->sf.thresh_mult[].
459 rd->threshes[segment_id][bsize][i] = rd->thresh_mult[i] < thresh_max
460 ? rd->thresh_mult[i] * t / 4
    [all...]
rd.h 281 // Thresh_mult is used to set a threshold for the rd score. A higher value
285 int thresh_mult[MAX_MODES]; member in struct:RD_OPT
  /external/libvpx/libvpx/vp9/encoder/
vp9_rd.c 292 // range of values used for cpi->sf.thresh_mult[].
298 rd->threshes[segment_id][bsize][i] = rd->thresh_mult[i] < thresh_max
299 ? rd->thresh_mult[i] * t / 4
650 rd->thresh_mult[i] = cpi->oxcf.mode == BEST ? -500 : 0;
653 rd->thresh_mult[THR_NEARESTMV] = 300;
654 rd->thresh_mult[THR_NEARESTG] = 300;
655 rd->thresh_mult[THR_NEARESTA] = 300;
657 rd->thresh_mult[THR_NEARESTMV] = 0;
658 rd->thresh_mult[THR_NEARESTG] = 0;
659 rd->thresh_mult[THR_NEARESTA] = 0
698 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 803 for (i = 0; i < MAX_MODES; ++i) sf->thresh_mult[i] = 0;
821 sf->thresh_mult[THR_ZERO1] = sf->thresh_mult[THR_NEAREST1] =
822 sf->thresh_mult[THR_NEAR1] = sf->thresh_mult[THR_DC] = 0; /* always */
824 sf->thresh_mult[THR_ZERO2] = sf->thresh_mult[THR_ZERO3] =
825 sf->thresh_mult[THR_NEAREST2] = sf->thresh_mult[THR_NEAREST3] =
826 sf->thresh_mult[THR_NEAR2] = sf->thresh_mult[THR_NEAR3]
    [all...]
onyx_int.h 169 int thresh_mult[MAX_MODES]; member in struct:__anon29816
rdopt.c 216 if (cpi->sf.thresh_mult[i] < INT_MAX) {
217 x->rd_threshes[i] = cpi->sf.thresh_mult[i] * q / 100;
228 if (cpi->sf.thresh_mult[i] < (INT_MAX / q)) {
229 x->rd_threshes[i] = cpi->sf.thresh_mult[i] * q;
    [all...]

Completed in 113 milliseconds