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_pickmode.c1118 this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 1); in vp9_pick_intra_mode()
1121 this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 0); in vp9_pick_intra_mode()
1141 ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in init_ref_frame_cost()
1143 ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1); in init_ref_frame_cost()
1145 ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in init_ref_frame_cost()
1146 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost()
1147 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost()
1148 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in init_ref_frame_cost()
1149 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in init_ref_frame_cost()
1948 this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1); in vp9_pick_inter_mode()
[all …]
Dvp9_rdopt.c853 s0 = vp9_cost_bit(skip_prob, 0); in choose_tx_size_from_rd()
854 s1 = vp9_cost_bit(skip_prob, 1); in choose_tx_size_from_rd()
2225 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs()
2230 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs()
2233 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs()
2237 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs()
2238 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()
2239 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()
2240 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in estimate_ref_frame_costs()
2241 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in estimate_ref_frame_costs()
[all …]