Home
last modified time | relevance | path

Searched refs:base_cost (Results 1 – 7 of 7) sorted by relevance

/external/libaom/libaom/av1/encoder/
Drd.c502 av1_cost_tokens_from_cdf(pcost->base_cost[ctx], in av1_fill_coeff_costs()
506 pcost->base_cost[ctx][4] = 0; in av1_fill_coeff_costs()
507 pcost->base_cost[ctx][5] = pcost->base_cost[ctx][1] + in av1_fill_coeff_costs()
509 pcost->base_cost[ctx][0]; in av1_fill_coeff_costs()
510 pcost->base_cost[ctx][6] = in av1_fill_coeff_costs()
511 pcost->base_cost[ctx][2] - pcost->base_cost[ctx][1]; in av1_fill_coeff_costs()
512 pcost->base_cost[ctx][7] = in av1_fill_coeff_costs()
513 pcost->base_cost[ctx][3] - pcost->base_cost[ctx][2]; in av1_fill_coeff_costs()
Dencodetxb.c338 cost += txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)];
793 const int(*base_cost)[8] = coeff_costs->base_cost; local
799 const int cost0 = base_cost[coeff_ctx][AOMMIN(level, 3)];
816 cost += base_cost[coeff_ctx][AOMMIN(level, 3)];
908 accu_rate += txb_costs->base_cost[coeff_ctx][0];
975 accu_rate += txb_costs->base_cost[coeff_ctx][0];
1304 int cost = txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)];
1306 if (abs_qc <= 3) diff = txb_costs->base_cost[coeff_ctx][abs_qc + 4];
1353 cost += txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)];
1397 *accu_rate += txb_costs->base_cost[coeff_ctx][0];
[all …]
Dblock.h57 int base_cost[SIG_COEF_CONTEXTS][8]; member
Drdopt.c6854 unsigned int base_cost = x->intra_inter_cost[intra_inter_ctx][1]; in estimate_ref_frame_costs() local
6857 ref_costs_single[i] = base_cost; in estimate_ref_frame_costs()
6916 base_cost + x->comp_ref_type_cost[comp_ref_type_ctx][1]; in estimate_ref_frame_costs()
6959 base_cost + x->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs()
6963 base_cost + x->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs()
6968 base_cost + x->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs()
6973 base_cost + x->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs()
/external/tensorflow/tensorflow/core/kernels/
Dtopk_op.cc212 const double base_cost = in Compute() local
216 const double sort_cost = (k == num_cols) ? base_cost : 4 * base_cost; in Compute()
/external/brotli/c/enc/
Dbackward_references_hq.c439 const float base_cost = start_costdiff + (float)GetInsertExtra(inscode) + in UpdateNodes() local
478 const float dist_cost = base_cost + in UpdateNodes()
485 const float cost = (cmdcode < 128 ? base_cost : dist_cost) + in UpdateNodes()
522 dist_cost = base_cost + (float)distnumextra + in UpdateNodes()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.c2227 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs() local
2230 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs()
2233 ref_costs_single[ALTREF_FRAME] = base_cost; in estimate_ref_frame_costs()
2246 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs() local
2249 base_cost += vp9_cost_bit(comp_inter_p, 1); in estimate_ref_frame_costs()
2251 ref_costs_comp[LAST_FRAME] = base_cost + vp9_cost_bit(ref_comp_p, 0); in estimate_ref_frame_costs()
2252 ref_costs_comp[GOLDEN_FRAME] = base_cost + vp9_cost_bit(ref_comp_p, 1); in estimate_ref_frame_costs()