Home
last modified time | relevance | path

Searched refs:vp9_cost_bit (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_cost.c46 const int cc = c + vp9_cost_bit(prob, b); in cost()
63 costs[-tree[0]] = vp9_cost_bit(probs[0], 0); in vp9_cost_tokens_skip()
Dvp9_cost.h30 #define vp9_cost_bit(prob, bit) vp9_cost_zero((bit) ? 256 - (prob) : (prob)) macro
44 cost += vp9_cost_bit(probs[i >> 1], bit); in treed_cost()
Dvp9_rdopt.c967 s0 = vp9_cost_bit(skip_prob, 0); in choose_tx_size_from_rd()
968 s1 = vp9_cost_bit(skip_prob, 1); in choose_tx_size_from_rd()
2365 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs()
2370 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs()
2373 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs()
2377 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs()
2378 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()
2379 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()
2380 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in estimate_ref_frame_costs()
2381 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in estimate_ref_frame_costs()
[all …]
Dvp9_pickmode.c1189 this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 1); in vp9_pick_intra_mode()
1192 this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 0); in vp9_pick_intra_mode()
1212 ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in init_ref_frame_cost()
1214 ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1); in init_ref_frame_cost()
1216 ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in init_ref_frame_cost()
1217 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost()
1218 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost()
1219 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in init_ref_frame_cost()
1220 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in init_ref_frame_cost()
2346 this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1); in vp9_pick_inter_mode()
[all …]