Searched refs:rd_opt (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 2117 RD_OPT *rd_opt = &cpi->rd; in handle_inter_mode() local 2229 rd_opt->mask_filter = 0; in handle_inter_mode() 2231 rd_opt->filter_cache[i] = INT64_MAX; in handle_inter_mode() 2250 rd_opt->filter_cache[i] = rd; in handle_inter_mode() 2251 rd_opt->filter_cache[SWITCHABLE_FILTERS] = in handle_inter_mode() 2252 MIN(rd_opt->filter_cache[SWITCHABLE_FILTERS], rd + rs_rd); in handle_inter_mode() 2255 rd_opt->mask_filter = MAX(rd_opt->mask_filter, rd); in handle_inter_mode() 2275 rd_opt->filter_cache[i] = rd; in handle_inter_mode() 2276 rd_opt->filter_cache[SWITCHABLE_FILTERS] = in handle_inter_mode() 2277 MIN(rd_opt->filter_cache[SWITCHABLE_FILTERS], rd + rs_rd); in handle_inter_mode() [all …]
|
D | vp9_encodeframe.c | 512 RD_OPT *const rd_opt = &cpi->rd; in update_state() local 598 rd_opt->tx_select_diff[i] += ctx->tx_rd_diff[i]; in update_state() 631 rd_opt->comp_pred_diff[SINGLE_REFERENCE] += ctx->single_pred_diff; in update_state() 632 rd_opt->comp_pred_diff[COMPOUND_REFERENCE] += ctx->comp_pred_diff; in update_state() 633 rd_opt->comp_pred_diff[REFERENCE_MODE_SELECT] += ctx->hybrid_pred_diff; in update_state() 636 rd_opt->filter_diff[i] += ctx->best_filter_diff[i]; in update_state() 3267 RD_OPT *const rd_opt = &cpi->rd; in encode_frame_internal() local 3278 vp9_zero(rd_opt->comp_pred_diff); in encode_frame_internal() 3279 vp9_zero(rd_opt->filter_diff); in encode_frame_internal() 3280 vp9_zero(rd_opt->tx_select_diff); in encode_frame_internal() [all …]
|
/external/webp/src/enc/ |
D | frame.c | 540 static uint64_t OneStatPass(VP8Encoder* const enc, VP8RDLevel rd_opt, in OneStatPass() argument 554 if (VP8Decimate(&it, &info, rd_opt)) { in OneStatPass() 588 const VP8RDLevel rd_opt = in StatLoop() local 610 OneStatPass(enc, rd_opt, nb_mbs, percent_per_pass, &stats); in StatLoop() 713 const VP8RDLevel rd_opt = enc->rd_opt_level_; in VP8EncLoop() local 718 if (!VP8Decimate(&it, &info, rd_opt) || dont_use_skip) { in VP8EncLoop() 747 const VP8RDLevel rd_opt = enc->rd_opt_level_; in VP8EncTokenLoop() local 761 assert(rd_opt >= RD_OPT_BASIC); // otherwise, token-buffer won't be useful in VP8EncTokenLoop() 786 VP8Decimate(&it, &info, rd_opt); in VP8EncTokenLoop()
|
D | quant.c | 1138 VP8RDLevel rd_opt) { in VP8Decimate() argument 1149 if (rd_opt > RD_OPT_NONE) { in VP8Decimate() 1150 it->do_trellis_ = (rd_opt >= RD_OPT_TRELLIS_ALL); in VP8Decimate() 1156 if (rd_opt == RD_OPT_TRELLIS) { // finish off with trellis-optim now in VP8Decimate()
|
D | vp8enci.h | 526 VP8RDLevel rd_opt);
|