Home
last modified time | relevance | path

Searched refs:rd_thresh (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_rd.h178 void vp9_update_rd_thresh_fact(int (*factor_buf)[MAX_MODES], int rd_thresh,
Dvp9_rd.c707 void vp9_update_rd_thresh_fact(int (*factor_buf)[MAX_MODES], int rd_thresh, in vp9_update_rd_thresh_fact() argument
709 if (rd_thresh > 0) { in vp9_update_rd_thresh_fact()
721 *fact = VPXMIN(*fact + RD_THRESH_INC, rd_thresh * RD_THRESH_MAX_FACT); in vp9_update_rd_thresh_fact()
Dvp9_rdopt.c951 BLOCK_SIZE bsize, int64_t rd_thresh) { in rd_pick_intra4x4block() argument
954 int64_t best_rd = rd_thresh; in rd_pick_intra4x4block()
1068 if (best_rd >= rd_thresh || x->skip_encode) return best_rd; in rd_pick_intra4x4block()
1163 if (best_rd >= rd_thresh || x->skip_encode) return best_rd; in rd_pick_intra4x4block()
/external/libaom/libaom/av1/encoder/
Drd.h431 int (*fact)[MAX_MODES], int rd_thresh, int bsize,
Drd.c1296 int (*factor_buf)[MAX_MODES], int rd_thresh, in av1_update_rd_thresh_fact() argument
1298 if (rd_thresh > 0) { in av1_update_rd_thresh_fact()
1311 *fact = AOMMIN(*fact + RD_THRESH_INC, rd_thresh * RD_THRESH_MAX_FACT); in av1_update_rd_thresh_fact()
Drdopt.c4619 const int64_t rd_thresh = best_rd + (best_rd >> 5); in rd_pick_intra_angle_sby() local
4620 if (rd_cost[2 * (angle_delta + 1) + i] > rd_thresh && in rd_pick_intra_angle_sby()
4621 rd_cost[2 * (angle_delta - 1) + i] > rd_thresh) in rd_pick_intra_angle_sby()
5402 int64_t rd_thresh = ref_best_rd; in select_tx_size_and_type() local
5403 if (fast_tx_search && rd_thresh < INT64_MAX) { in select_tx_size_and_type()
5404 if (INT64_MAX - rd_thresh > (rd_thresh >> 3)) rd_thresh += (rd_thresh >> 3); in select_tx_size_and_type()
5406 assert(rd_thresh > 0); in select_tx_size_and_type()
5440 (rd_thresh == INT64_MAX) ? INT64_MAX in select_tx_size_and_type()
5441 : (rd_thresh - (AOMMIN(skip_rd, this_rd))); in select_tx_size_and_type()
6300 int64_t rd_thresh; in rd_pick_intra_angle_sbuv() local
[all …]