Searched refs:vp9_cost_bit (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/vp9/encoder/ |
D | vp9_cost.c | 46 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()
|
D | vp9_cost.h | 30 #define vp9_cost_bit(prob, bit) vp9_cost_zero((bit) ? 256 - (prob) : (prob)) macro 43 cost += vp9_cost_bit(probs[i >> 1], bit); in treed_cost()
|
D | vp9_rdopt.c | 964 s0 = vp9_cost_bit(skip_prob, 0); in choose_tx_size_from_rd() 965 s1 = vp9_cost_bit(skip_prob, 1); in choose_tx_size_from_rd() 2389 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs() 2394 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs() 2397 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs() 2401 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs() 2402 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs() 2403 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs() 2404 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in estimate_ref_frame_costs() 2405 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in estimate_ref_frame_costs() [all …]
|
D | vp9_pickmode.c | 1198 this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 1); in vp9_pick_intra_mode() 1201 this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 0); in vp9_pick_intra_mode() 1221 ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in init_ref_frame_cost() 1223 ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1); in init_ref_frame_cost() 1225 ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in init_ref_frame_cost() 1226 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1227 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1228 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in init_ref_frame_cost() 1229 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in init_ref_frame_cost() 2353 this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1); in vp9_pick_inter_mode() [all …]
|