Searched refs:best_rd (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 73 int64_t best_rd; member 748 if (args->this_rd + rd > args->best_rd) { in block_rd_txfm() 772 if (args->this_rd > args->best_rd) { in block_rd_txfm() 790 args.best_rd = ref_best_rd; in txfm_rd_in_plane() 847 int64_t best_rd = INT64_MAX; in choose_tx_size_from_rd() local 906 if (rd[n][1] < best_rd) { in choose_tx_size_from_rd() 908 best_rd = rd[n][1]; in choose_tx_size_from_rd() 962 int64_t best_rd = rd_thresh; in rd_pick_intra4x4block() local 1027 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd) in rd_pick_intra4x4block() 1049 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd) in rd_pick_intra4x4block() [all …]
|
D | vp9_rd.h | 175 static INLINE int rd_less_than_thresh(int64_t best_rd, int thresh, in rd_less_than_thresh() argument 177 return best_rd < ((int64_t)thresh * (*thresh_fact) >> 5) || thresh == INT_MAX; in rd_less_than_thresh()
|
D | vp9_rdopt.h | 30 PICK_MODE_CONTEXT *ctx, int64_t best_rd);
|
D | vp9_pickmode.c | 1032 static INLINE int rd_less_than_thresh_row_mt(int64_t best_rd, int thresh, in rd_less_than_thresh_row_mt() argument 1036 best_rd < ((int64_t)thresh * (*thresh_fact) >> 5) || thresh == INT_MAX; in rd_less_than_thresh_row_mt() 2283 int64_t best_rd = INT64_MAX; in vp9_pick_inter_mode_sub8x8() local 2490 if (this_rd < best_rd) { in vp9_pick_inter_mode_sub8x8() 2491 best_rd = this_rd; in vp9_pick_inter_mode_sub8x8() 2514 rd_cost->rdcost = best_rd; in vp9_pick_inter_mode_sub8x8()
|
D | vp9_encodeframe.c | 1635 PICK_MODE_CONTEXT *ctx, int64_t best_rd) { in rd_pick_sb_modes() argument 1742 vp9_rd_pick_intra_mode_sb(cpi, x, rd_cost, bsize, ctx, best_rd); in rd_pick_sb_modes() 1747 ctx, best_rd); in rd_pick_sb_modes() 1750 bsize, ctx, best_rd); in rd_pick_sb_modes() 1753 bsize, ctx, best_rd); in rd_pick_sb_modes() 2878 RD_COST *rd_cost, int64_t best_rd, in rd_pick_partition() argument 2933 best_rdc.rdcost = best_rd; in rd_pick_partition() 3302 (void)best_rd; in rd_pick_partition() 3620 int64_t best_rd, PC_TREE *pc_tree) { in nonrd_pick_partition() argument 3652 best_rdc.rdcost = best_rd; in nonrd_pick_partition()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 525 int best_rd = INT_MAX; in rd_pick_intra4x4block() local 566 if (this_rd < best_rd) { in rd_pick_intra4x4block() 570 best_rd = this_rd; in rd_pick_intra4x4block() 582 return best_rd; in rd_pick_intra4x4block() 586 int *Distortion, int best_rd) { in rd_pick_intra4x4mby_modes() argument 632 if (total_rd >= (int64_t)best_rd) break; in rd_pick_intra4x4mby_modes() 635 if (total_rd >= (int64_t)best_rd) return INT_MAX; in rd_pick_intra4x4mby_modes() 650 int best_rd = INT_MAX; in rd_pick_intra16x16mby_mode() local 668 if (this_rd < best_rd) { in rd_pick_intra16x16mby_mode() 670 best_rd = this_rd; in rd_pick_intra16x16mby_mode() [all …]
|
D | pickinter.c | 256 int best_rd = INT_MAX; in pick_intra4x4block() local 274 if (this_rd < best_rd) { in pick_intra4x4block() 277 best_rd = this_rd; in pick_intra4x4block() 284 return best_rd; in pick_intra4x4block() 646 int best_rd = INT_MAX; in vp8_pick_inter_mode() local 861 if (best_rd <= x->rd_threshes[mode_index]) continue; in vp8_pick_inter_mode() 1218 if (this_rd < best_rd || x->skip) { in vp8_pick_inter_mode() 1225 best_rd = this_rd; in vp8_pick_inter_mode() 1352 if (this_rd < best_rd) { in vp8_pick_inter_mode()
|