Home
last modified time | relevance | path

Searched refs:best_intra_cost (Results 1 – 3 of 3) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dtpl_model.c208 int64_t best_intra_cost = INT64_MAX; in mode_estimation() local
283 if (intra_cost < best_intra_cost) { in mode_estimation()
284 best_intra_cost = intra_cost; in mode_estimation()
386 if (best_inter_cost < best_intra_cost) { in mode_estimation()
403 best_intra_cost = AOMMAX(best_intra_cost, 1); in mode_estimation()
407 best_inter_cost = AOMMIN(best_intra_cost, best_inter_cost); in mode_estimation()
410 tpl_stats->intra_cost = best_intra_cost << TPL_DEP_COST_SCALE_LOG2; in mode_estimation()
/external/libhevc/encoder/
Dhme_refine.c5023 S32 best_intra_cost = in hme_populate_cu_tree() local
5031 S32 best_cost = (best_inter_cost > best_intra_cost) ? best_intra_cost : best_inter_cost; in hme_populate_cu_tree()
5728 S32 best_intra_cost = in hme_analyse_mv_clustering() local
5736 S32 best_cost = (best_inter_cost > best_intra_cost) ? best_intra_cost : best_inter_cost; in hme_analyse_mv_clustering()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c6266 int64_t best_intra_cost = INT64_MAX; local
6318 if (intra_cost < best_intra_cost) best_intra_cost = intra_cost;
6387 best_intra_cost = VPXMAX(best_intra_cost, 1);
6388 best_inter_cost = VPXMIN(best_intra_cost, best_inter_cost);
6392 1, (best_intra_cost << TPL_DEP_COST_SCALE_LOG2) / (mi_height * mi_width));