Searched defs:new_b (Results 1 - 3 of 3) sorted by relevance

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

Completed in 33 milliseconds