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.c43 const int cc = c + vp9_cost_bit(prob, b); in cost()
60 costs[-tree[0]] = vp9_cost_bit(probs[0], 0); in vp9_cost_tokens_skip()
Dvp9_cost.h26 #define vp9_cost_bit(prob, bit) vp9_cost_zero((bit) ? vp9_complement(prob) \ macro
41 cost += vp9_cost_bit(probs[i >> 1], bit); in treed_cost()
Dvp9_rdopt.c501 s0 = vp9_cost_bit(skip_prob, 0); in choose_tx_size_from_rd()
502 s1 = vp9_cost_bit(skip_prob, 1); in choose_tx_size_from_rd()
1655 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs()
1660 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs()
1663 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs()
1667 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs()
1668 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()
1669 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()
1670 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in estimate_ref_frame_costs()
1671 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in estimate_ref_frame_costs()
[all …]
Dvp9_tokenize.c142 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */ in vp9_tokenize_initialize()