Home
last modified time | relevance | path

Searched refs:this_rd (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dpickinter.c157 int this_rd; in pick_intra4x4block() local
164 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in pick_intra4x4block()
166 if (this_rd < best_rd) in pick_intra4x4block()
170 best_rd = this_rd; in pick_intra4x4block()
491 int this_rd; in evaluate_inter_mode() local
508 this_rd = RDCOST(x->rdmult, x->rddiv, rate2, *distortion2); in evaluate_inter_mode()
520 this_rd = ((int64_t)this_rd) * rd_adj / 100; in evaluate_inter_mode()
524 return this_rd; in evaluate_inter_mode()
705 int this_rd = INT_MAX; in vp8_pick_inter_mode() local
810 this_rd = INT_MAX; in vp8_pick_inter_mode()
[all …]
Drdopt.c665 int this_rd; in rd_pick_intra4x4block() local
683 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra4x4block()
685 if (this_rd < best_rd) in rd_pick_intra4x4block()
690 best_rd = this_rd; in rd_pick_intra4x4block()
780 int this_rd; in rd_pick_intra16x16mby_mode() local
800 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra16x16mby_mode()
802 if (this_rd < best_rd) in rd_pick_intra16x16mby_mode()
805 best_rd = this_rd; in rd_pick_intra16x16mby_mode()
891 int this_rd; in rd_pick_intra_mbuv_mode() local
916 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion); in rd_pick_intra_mbuv_mode()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_pickmode.c220 int64_t this_rd = INT64_MAX; in vp9_pick_inter_mode() local
301 if (this_rd < (int64_t)(1 << num_pels_log2_lookup[bsize])) in vp9_pick_inter_mode()
327 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist); in vp9_pick_inter_mode()
329 if (this_rd < best_rd) { in vp9_pick_inter_mode()
330 best_rd = this_rd; in vp9_pick_inter_mode()
356 this_rd = RDCOST(x->rdmult, x->rddiv, rate, dist); in vp9_pick_inter_mode()
358 if (this_rd + intra_mode_cost < best_rd) { in vp9_pick_inter_mode()
359 best_rd = this_rd; in vp9_pick_inter_mode()
Dvp9_rdopt.c77 int64_t this_rd; member
691 args->this_rd += rd; in block_rd_txfm()
693 if (args->this_rd > args->best_rd) { in block_rd_txfm()
1076 int64_t this_rd; in rd_pick_intra4x4block() local
1141 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion); in rd_pick_intra4x4block()
1143 if (this_rd < best_rd) { in rd_pick_intra4x4block()
1147 best_rd = this_rd; in rd_pick_intra4x4block()
1197 int64_t d = INT64_MAX, this_rd = INT64_MAX; in rd_pick_intra_sub_8x8_y_mode() local
1206 this_rd = rd_pick_intra4x4block(cpi, mb, i, &best_mode, bmode_costs, in rd_pick_intra_sub_8x8_y_mode()
1209 if (this_rd >= best_rd - total_rd) in rd_pick_intra_sub_8x8_y_mode()
[all …]