Home
last modified time | relevance | path

Searched refs:best_rdc (Results 1 – 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c2359 RD_COST this_rdc, sum_rdc, best_rdc; in rd_pick_partition() local
2398 vp9_rd_cost_reset(&best_rdc); in rd_pick_partition()
2399 best_rdc.rdcost = best_rd; in rd_pick_partition()
2495 &this_rdc, bsize, ctx, best_rdc.rdcost); in rd_pick_partition()
2504 if (this_rdc.rdcost < best_rdc.rdcost) { in rd_pick_partition()
2505 best_rdc = this_rdc; in rd_pick_partition()
2513 ((best_rdc.dist < (dist_breakout_thr >> 2)) || in rd_pick_partition()
2514 (best_rdc.dist < dist_breakout_thr && in rd_pick_partition()
2515 best_rdc.rate < rate_breakout_thr))) { in rd_pick_partition()
2585 pc_tree->leaf_split[0], best_rdc.rdcost); in rd_pick_partition()
[all …]
Dvp9_pickmode.c979 RD_COST this_rdc, best_rdc; in vp9_pick_intra_mode() local
994 vp9_rd_cost_reset(&best_rdc); in vp9_pick_intra_mode()
1017 if (this_rdc.rdcost < best_rdc.rdcost) { in vp9_pick_intra_mode()
1018 best_rdc = this_rdc; in vp9_pick_intra_mode()
1023 *rd_cost = best_rdc; in vp9_pick_intra_mode()
1092 RD_COST this_rdc, best_rdc; in vp9_pick_inter_mode() local
1165 vp9_rd_cost_reset(&best_rdc); in vp9_pick_inter_mode()
1260 if (rd_less_than_thresh(best_rdc.rdcost, mode_rd_thresh, in vp9_pick_inter_mode()
1297 &frame_mv[NEWMV][ref_frame], &rate_mv, best_rdc.rdcost)) { in vp9_pick_inter_mode()
1492 if (this_rdc.rdcost < best_rdc.rdcost || x->skip) { in vp9_pick_inter_mode()
[all …]