Home
last modified time | relevance | path

Searched refs:rd_threshes (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Drdopt.c217 x->rd_threshes[i] = cpi->sf.thresh_mult[i] * q / 100; in vp8_initialize_rd_consts()
219 x->rd_threshes[i] = INT_MAX; in vp8_initialize_rd_consts()
222 cpi->rd_baseline_thresh[i] = x->rd_threshes[i]; in vp8_initialize_rd_consts()
229 x->rd_threshes[i] = cpi->sf.thresh_mult[i] * q; in vp8_initialize_rd_consts()
231 x->rd_threshes[i] = INT_MAX; in vp8_initialize_rd_consts()
234 cpi->rd_baseline_thresh[i] = x->rd_threshes[i]; in vp8_initialize_rd_consts()
1825 if (best_mode.rd <= x->rd_threshes[mode_index]) continue; in vp8_rd_pick_inter_mode()
1884 x->rd_threshes[mode_index] = in vp8_rd_pick_inter_mode()
1968 ? x->rd_threshes[THR_NEW1] in vp8_rd_pick_inter_mode()
1969 : x->rd_threshes[THR_NEW3]; in vp8_rd_pick_inter_mode()
[all …]
Dblock.h144 int rd_threshes[MAX_MODES]; member
Dethreading.c424 memcpy(z->rd_threshes, x->rd_threshes, sizeof(x->rd_threshes)); in setup_mbby_copy()
Dpickinter.c774 if (best_rd <= x->rd_threshes[mode_index]) continue; in vp8_pick_inter_mode()
825 x->rd_threshes[mode_index] = in vp8_pick_inter_mode()
1151 x->rd_threshes[mode_index] = (cpi->rd_baseline_thresh[mode_index] >> 7) * in vp8_pick_inter_mode()
1165 x->rd_threshes[mode_index] = (cpi->rd_baseline_thresh[mode_index] >> 7) * in vp8_pick_inter_mode()
1182 x->rd_threshes[best_mode_index] = in vp8_pick_inter_mode()
/external/libaom/libaom/av1/encoder/
Dnonrd_pickmode.c1500 const int *const rd_threshes = cpi->rd.threshes[mi->segment_id][bsize]; local
1782 ? rd_threshes[mode_index] << 1
1783 : rd_threshes[mode_index];
2026 const int mode_rd_thresh = rd_threshes[mode_index];
Drdopt.c3596 const int *const rd_threshes = cpi->rd.threshes[segment_id][bsize]; in init_inter_mode_search_state() local
3599 ((int64_t)rd_threshes[i] * x->thresh_freq_fact[bsize][i]) >> in init_inter_mode_search_state()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_pickmode.c1703 const int *const rd_threshes = cpi->rd.threshes[mi->segment_id][bsize]; in vp9_pick_inter_mode() local
2224 ? rd_threshes[mode_index] << 1 in vp9_pick_inter_mode()
2225 : rd_threshes[mode_index]; in vp9_pick_inter_mode()
2551 int mode_rd_thresh = rd_threshes[mode_index]; in vp9_pick_inter_mode()
Dvp9_rdopt.c3346 const int *const rd_threshes = rd_opt->threshes[segment_id][bsize]; in vp9_rd_pick_inter_mode_sb() local
3483 mode_threshold[i] = ((int64_t)rd_threshes[i] * rd_thresh_freq_fact[i]) >> 5; in vp9_rd_pick_inter_mode_sb()