Home
last modified time | relevance | path

Searched refs:new_b (Results 1 – 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_subexp.c129 const int new_b = cost_branch256(ct, newp); in vp9_prob_diff_update_savings_search() local
131 const int savings = old_b - new_b - update_b; in vp9_prob_diff_update_savings_search()
145 int i, old_b, new_b, update_b, savings, bestsavings, step; in vp9_prob_diff_update_savings_search_model() local
164 for (i = UNCONSTRAINED_NODES, new_b = 0; i < ENTROPY_NODES; ++i) in vp9_prob_diff_update_savings_search_model()
165 new_b += cost_branch256(ct + 2 * i, newplist[i]); in vp9_prob_diff_update_savings_search_model()
166 new_b += cost_branch256(ct + 2 * PIVOT_NODE, newplist[PIVOT_NODE]); in vp9_prob_diff_update_savings_search_model()
169 savings = old_b - new_b - update_b; in vp9_prob_diff_update_savings_search_model()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dencodemv.c208 const int new_b = vp8_cost_branch(ct, new_p); in update() local
211 if (cur_b - new_b > cost) in update()
Dbitstream.c75 unsigned int new_b = 0, old_b = 0; in update_mode() local
86 new_b += vp8_cost_branch(bct[i], Pnew[i]); in update_mode()
91 if (new_b + (n << 8) < old_b) in update_mode()
845 const int new_b = vp8_cost_branch(ct, newp); in prob_update_savings() local
849 return old_b - new_b - update_b; in prob_update_savings()