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.c2892 RD_COST this_rdc, sum_rdc, best_rdc; in rd_pick_partition() local
2932 vp9_rd_cost_reset(&best_rdc); in rd_pick_partition()
2933 best_rdc.rdcost = best_rd; in rd_pick_partition()
3039 best_rdc.rdcost); in rd_pick_partition()
3047 if (this_rdc.rdcost < best_rdc.rdcost) { in rd_pick_partition()
3050 best_rdc = this_rdc; in rd_pick_partition()
3058 ((best_rdc.dist < (dist_breakout_thr >> 2)) || in rd_pick_partition()
3059 (best_rdc.dist < dist_breakout_thr && in rd_pick_partition()
3060 best_rdc.rate < rate_breakout_thr))) { in rd_pick_partition()
3150 pc_tree->leaf_split[0], best_rdc.rdcost); in rd_pick_partition()
[all …]
Dvp9_pickmode.c1079 RD_COST this_rdc, best_rdc; in vp9_pick_intra_mode() local
1094 vp9_rd_cost_reset(&best_rdc); in vp9_pick_intra_mode()
1126 if (this_rdc.rdcost < best_rdc.rdcost) { in vp9_pick_intra_mode()
1127 best_rdc = this_rdc; in vp9_pick_intra_mode()
1132 *rd_cost = best_rdc; in vp9_pick_intra_mode()
1310 struct buf_2d yv12_mb[4][MAX_MB_PLANE], RD_COST *best_rdc, BLOCK_SIZE bsize, in recheck_zeromv_after_denoising() argument
1317 ctx_den->zero_last_cost_orig < (best_rdc->rdcost << 3) && in recheck_zeromv_after_denoising()
1343 if (this_rdc.rdcost > best_rdc->rdcost) { in recheck_zeromv_after_denoising()
1344 this_rdc = *best_rdc; in recheck_zeromv_after_denoising()
1364 *best_rdc = this_rdc; in recheck_zeromv_after_denoising()
[all …]