Searched refs:vp9_cost_bit (Results 1 – 4 of 4) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_cost.c | 43 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()
|
D | vp9_cost.h | 26 #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()
|
D | vp9_rdopt.c | 815 s0 = vp9_cost_bit(skip_prob, 0); in choose_txfm_size_from_rd() 816 s1 = vp9_cost_bit(skip_prob, 1); in choose_txfm_size_from_rd() 899 s0 = vp9_cost_bit(skip_prob, 0); in choose_txfm_size_from_modelrd() 900 s1 = vp9_cost_bit(skip_prob, 1); in choose_txfm_size_from_modelrd() 2227 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs() 2232 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs() 2235 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs() 2239 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs() 2240 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs() 2241 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs() [all …]
|
D | vp9_tokenize.c | 151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */ in vp9_tokenize_initialize()
|