Searched refs:adapt_prob (Results 1 – 2 of 2) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_entropymode.c | 340 static int adapt_prob(vp9_prob pre_prob, const unsigned int ct[2]) { in adapt_prob() function 358 fc->intra_inter_prob[i] = adapt_prob(pre_fc->intra_inter_prob[i], in vp9_adapt_mode_probs() 361 fc->comp_inter_prob[i] = adapt_prob(pre_fc->comp_inter_prob[i], in vp9_adapt_mode_probs() 364 fc->comp_ref_prob[i] = adapt_prob(pre_fc->comp_ref_prob[i], in vp9_adapt_mode_probs() 368 fc->single_ref_prob[i][j] = adapt_prob(pre_fc->single_ref_prob[i][j], in vp9_adapt_mode_probs() 402 fc->tx_probs.p8x8[i][j] = adapt_prob(pre_fc->tx_probs.p8x8[i][j], in vp9_adapt_mode_probs() 407 fc->tx_probs.p16x16[i][j] = adapt_prob(pre_fc->tx_probs.p16x16[i][j], in vp9_adapt_mode_probs() 412 fc->tx_probs.p32x32[i][j] = adapt_prob(pre_fc->tx_probs.p32x32[i][j], in vp9_adapt_mode_probs() 418 fc->skip_probs[i] = adapt_prob(pre_fc->skip_probs[i], counts->skip[i]); in vp9_adapt_mode_probs()
|
D | vp9_entropymv.c | 186 static vp9_prob adapt_prob(vp9_prob prep, const unsigned int ct[2]) { in adapt_prob() function 210 comp->sign = adapt_prob(pre_comp->sign, c->sign); in vp9_adapt_mv_probs() 216 comp->bits[j] = adapt_prob(pre_comp->bits[j], c->bits[j]); in vp9_adapt_mv_probs() 225 comp->class0_hp = adapt_prob(pre_comp->class0_hp, c->class0_hp); in vp9_adapt_mv_probs() 226 comp->hp = adapt_prob(pre_comp->hp, c->hp); in vp9_adapt_mv_probs()
|