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 524 if (args->this_rd + rd > args->best_rd) { in block_rd_txfm() 544 if (args->this_rd > args->best_rd) { in block_rd_txfm() 563 args.best_rd = ref_best_rd; in txfm_rd_in_plane() 627 int64_t best_rd = INT64_MAX; in choose_tx_size_from_rd() local 682 if (rd[n][1] < best_rd) { in choose_tx_size_from_rd() 684 best_rd = rd[n][1]; in choose_tx_size_from_rd() 745 int64_t best_rd = rd_thresh; in rd_pick_intra4x4block() local 811 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd) in rd_pick_intra4x4block() 831 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd) in rd_pick_intra4x4block() [all …]
|
D | vp9_rd.h | 165 static INLINE int rd_less_than_thresh(int64_t best_rd, int thresh, in rd_less_than_thresh() argument 167 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_encodeframe.c | 1167 int64_t best_rd) { in rd_pick_sb_modes() argument 1244 vp9_rd_pick_intra_mode_sb(cpi, x, rd_cost, bsize, ctx, best_rd); in rd_pick_sb_modes() 1249 ctx, best_rd); in rd_pick_sb_modes() 1252 rd_cost, bsize, ctx, best_rd); in rd_pick_sb_modes() 1255 rd_cost, bsize, ctx, best_rd); in rd_pick_sb_modes() 2344 int64_t best_rd, PC_TREE *pc_tree) { in rd_pick_partition() argument 2387 best_rdc.rdcost = best_rd; in rd_pick_partition() 2733 (void) best_rd; in rd_pick_partition() 3034 int do_recon, int64_t best_rd, in nonrd_pick_partition() argument 3067 best_rdc.rdcost = best_rd; in nonrd_pick_partition()
|
D | vp9_pickmode.c | 1668 int64_t best_rd = INT64_MAX; in vp9_pick_inter_mode_sub8x8() local 1892 if (this_rd < best_rd) { in vp9_pick_inter_mode_sub8x8() 1893 best_rd = this_rd; in vp9_pick_inter_mode_sub8x8() 1916 rd_cost->rdcost = best_rd; in vp9_pick_inter_mode_sub8x8()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 643 int best_rd = INT_MAX; in rd_pick_intra4x4block() local 685 if (this_rd < best_rd) in rd_pick_intra4x4block() 690 best_rd = this_rd; in rd_pick_intra4x4block() 702 return best_rd; in rd_pick_intra4x4block() 706 int *rate_y, int *Distortion, int best_rd) in rd_pick_intra4x4mby_modes() argument 755 if(total_rd >= (int64_t)best_rd) in rd_pick_intra4x4mby_modes() 759 if(total_rd >= (int64_t)best_rd) in rd_pick_intra4x4mby_modes() 779 int best_rd = INT_MAX; in rd_pick_intra16x16mby_mode() local 801 if (this_rd < best_rd) in rd_pick_intra16x16mby_mode() 804 best_rd = this_rd; in rd_pick_intra16x16mby_mode() [all …]
|
D | pickinter.c | 245 int best_rd = INT_MAX; in pick_intra4x4block() local 264 if (this_rd < best_rd) in pick_intra4x4block() 268 best_rd = this_rd; in pick_intra4x4block() 275 return best_rd; in pick_intra4x4block() 691 int best_rd = INT_MAX; in vp8_pick_inter_mode() local 907 if (best_rd <= x->rd_threshes[mode_index]) in vp8_pick_inter_mode() 1314 if (this_rd < best_rd || x->skip) in vp8_pick_inter_mode() 1322 best_rd = this_rd; in vp8_pick_inter_mode() 1460 if (this_rd < best_rd) in vp8_pick_inter_mode()
|