Searched refs:tmp_rd (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 2614 int64_t rd, tmp_rd, best_rd = INT64_MAX; in handle_inter_mode() local 2834 tmp_rd = best_rd; in handle_inter_mode() 2858 rd = tmp_rd + RDCOST(x->rdmult, x->rddiv, rs, 0); in handle_inter_mode() 4155 int64_t tmp_rd, tmp_best_rd = INT64_MAX, tmp_best_rdu = INT64_MAX; in vp9_rd_pick_inter_mode_sub8x8() local 4217 tmp_rd = rd_pick_best_sub8x8_mode( in vp9_rd_pick_inter_mode_sub8x8() 4223 if (tmp_rd == INT64_MAX) continue; in vp9_rd_pick_inter_mode_sub8x8() 4226 filter_cache[switchable_filter_index] = tmp_rd; in vp9_rd_pick_inter_mode_sub8x8() 4228 VPXMIN(filter_cache[SWITCHABLE_FILTERS], tmp_rd + rs_rd); in vp9_rd_pick_inter_mode_sub8x8() 4229 if (cm->interp_filter == SWITCHABLE) tmp_rd += rs_rd; in vp9_rd_pick_inter_mode_sub8x8() 4231 mask_filter = VPXMAX(mask_filter, tmp_rd); in vp9_rd_pick_inter_mode_sub8x8() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 1935 int tmp_rd; in vp8_rd_pick_inter_mode() local 1941 tmp_rd = rd_pick_intra4x4mby_modes(x, &rate, &rd.rate_y, &distortion, in vp8_rd_pick_inter_mode() 1946 if (tmp_rd < best_mode.yrd) { in vp8_rd_pick_inter_mode() 1959 int tmp_rd; in vp8_rd_pick_inter_mode() local 1970 tmp_rd = vp8_rd_pick_best_mbsegmentation( in vp8_rd_pick_inter_mode() 1980 if (tmp_rd < best_mode.yrd) { in vp8_rd_pick_inter_mode()
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 5252 int64_t tmp_rd = 0; in try_tx_block_split() local 5268 ref_best_rd - tmp_rd, &this_cost_valid, ftxs_mode, in try_tx_block_split() 5272 tmp_rd = RDCOST(x->rdmult, split_rd_stats->rate, split_rd_stats->dist); in try_tx_block_split() 5273 if (no_split_rd < tmp_rd) return; in try_tx_block_split() 5278 *split_rd = tmp_rd; in try_tx_block_split() 8270 int64_t tmp_rd = RDCOST(x->rdmult, tmp_rs + tmp_rate[1], tmp_dist[1]); in interpolation_filter_rd() local 8271 if (tmp_rd >= *rd) { in interpolation_filter_rd() 8292 int64_t tmp_rd = RDCOST(x->rdmult, tmp_rs + tmp_rate[1], tmp_dist[1]); in interpolation_filter_rd() local 8294 if (tmp_rd < *rd) { in interpolation_filter_rd() 8295 *rd = tmp_rd; in interpolation_filter_rd() [all …]
|