Searched refs:this_rd (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | pickinter.c | 192 int this_rd; in pick_intra4x4block() local 199 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in pick_intra4x4block() 201 if (this_rd < best_rd) { in pick_intra4x4block() 204 best_rd = this_rd; in pick_intra4x4block() 469 int this_rd; in evaluate_inter_mode() local 486 this_rd = RDCOST(x->rdmult, x->rddiv, rate2, *distortion2); in evaluate_inter_mode() 503 this_rd = (int)(((int64_t)this_rd) * rd_adj / 100); in evaluate_inter_mode() 507 return this_rd; in evaluate_inter_mode() 768 int this_rd = INT_MAX; in vp8_pick_inter_mode() local 863 this_rd = INT_MAX; in vp8_pick_inter_mode() [all …]
|
D | rdopt.c | 548 int this_rd; in rd_pick_intra4x4block() local 566 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra4x4block() 568 if (this_rd < best_rd) { in rd_pick_intra4x4block() 572 best_rd = this_rd; in rd_pick_intra4x4block() 653 int this_rd; in rd_pick_intra16x16mby_mode() local 668 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra16x16mby_mode() 670 if (this_rd < best_rd) { in rd_pick_intra16x16mby_mode() 672 best_rd = this_rd; in rd_pick_intra16x16mby_mode() 756 int this_rd; in rd_pick_intra_mbuv_mode() local 779 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion); in rd_pick_intra_mbuv_mode() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 74 int64_t this_rd; member 745 if (args->this_rd + rd > args->best_rd) { in block_rd_txfm() 768 args->this_rd += rd; in block_rd_txfm() 770 if (args->this_rd > args->best_rd) { in block_rd_txfm() 978 int64_t this_rd; in rd_pick_intra4x4block() local 1050 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra4x4block() 1052 if (this_rd < best_rd) { in rd_pick_intra4x4block() 1056 best_rd = this_rd; in rd_pick_intra4x4block() 1080 int64_t this_rd; in rd_pick_intra4x4block() local 1146 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra4x4block() [all …]
|
D | vp9_pickmode.c | 2661 int64_t this_rd = 0; in vp9_pick_inter_mode_sub8x8() local 2822 this_rd += b_best_rd; in vp9_pick_inter_mode_sub8x8() 2830 if (this_rd < best_rd) { in vp9_pick_inter_mode_sub8x8() 2831 best_rd = this_rd; in vp9_pick_inter_mode_sub8x8()
|
D | vp9_encodeframe.c | 3393 const int64_t this_rd = pc_tree->split[i]->none.rdcost; in ml_prune_rect_partition() local 3394 const int rd_valid = this_rd > 0 && this_rd < 1000000000; in ml_prune_rect_partition() 3397 rd_valid ? ((float)this_rd / (float)ref_rd) : 1.0f; in ml_prune_rect_partition()
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 192 int64_t this_rd; member 3489 args->skip_trellis, args->best_rd - args->this_rd, in block_rd_txfm() 3522 args->this_rd += rd; in block_rd_txfm() 3524 if (args->this_rd > args->best_rd) args->exit_early = 1; in block_rd_txfm() 3529 int64_t this_rd, int plane, BLOCK_SIZE bsize, in txfm_rd_in_plane() argument 3541 args.this_rd = this_rd; in txfm_rd_in_plane() 3554 if (args.this_rd > args.best_rd) { in txfm_rd_in_plane() 3608 int64_t this_rd; in txfm_yrd() local 3612 this_rd = RDCOST(x->rdmult, s0 + r_tx_size * tx_select, 0); in txfm_yrd() 3615 this_rd = RDCOST(x->rdmult, s0 + r_tx_size * tx_select, 0); in txfm_yrd() [all …]
|