Searched refs:best_rdc (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | encodeframe.c | 2189 RD_STATS *best_rdc, RD_STATS *sum_rdc, in rd_try_subblock() argument 2194 #define RTS_MAX_RDCOST best_rdc->rdcost in rd_try_subblock() 2200 const int64_t rdcost_remaining = best_rdc->rdcost == INT64_MAX in rd_try_subblock() 2202 : (best_rdc->rdcost - sum_rdc->rdcost); in rd_try_subblock() 2232 PC_TREE *pc_tree, RD_STATS *best_rdc, in rd_test_partition3() argument 2248 best_rdc, &sum_rdc, &this_rdc, in rd_test_partition3() 2253 best_rdc, &sum_rdc, &this_rdc, in rd_test_partition3() 2265 best_rdc, &sum_rdc, &this_rdc, in rd_test_partition3() 2269 if (sum_rdc.rdcost >= best_rdc->rdcost) return; in rd_test_partition3() 2273 if (sum_rdc.rdcost >= best_rdc->rdcost) return; in rd_test_partition3() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 1115 RD_COST this_rdc, best_rdc; in vp9_pick_intra_mode() local 1130 vp9_rd_cost_reset(&best_rdc); in vp9_pick_intra_mode() 1162 if (this_rdc.rdcost < best_rdc.rdcost) { in vp9_pick_intra_mode() 1163 best_rdc = this_rdc; in vp9_pick_intra_mode() 1168 *rd_cost = best_rdc; in vp9_pick_intra_mode() 1333 struct buf_2d yv12_mb[4][MAX_MB_PLANE], RD_COST *best_rdc, BLOCK_SIZE bsize, in recheck_zeromv_after_denoising() argument 1340 ctx_den->zero_last_cost_orig < (best_rdc->rdcost << 3) && in recheck_zeromv_after_denoising() 1367 if (this_rdc.rdcost > best_rdc->rdcost) { in recheck_zeromv_after_denoising() 1368 this_rdc = *best_rdc; in recheck_zeromv_after_denoising() 1388 *best_rdc = this_rdc; in recheck_zeromv_after_denoising() [all …]
|
D | vp9_encodeframe.c | 3659 RD_COST this_rdc, sum_rdc, best_rdc; in rd_pick_partition() local 3706 vp9_rd_cost_reset(&best_rdc); in rd_pick_partition() 3707 best_rdc.rdcost = best_rd; in rd_pick_partition() 3835 best_rdc.rdcost); in rd_pick_partition() 3852 if (this_rdc.rdcost < best_rdc.rdcost) { in rd_pick_partition() 3855 best_rdc = this_rdc; in rd_pick_partition() 3883 if ((best_rdc.dist < (dist_breakout_thr >> 2)) || in rd_pick_partition() 3884 (best_rdc.dist < dist_breakout_thr && in rd_pick_partition() 3885 best_rdc.rate < rate_breakout_thr)) { in rd_pick_partition() 3973 pc_tree->leaf_split[0], best_rdc.rdcost); in rd_pick_partition() [all …]
|