Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_subexp.c131 const int savings = old_b - new_b - update_b; in vp9_prob_diff_update_savings_search() local
132 if (savings > bestsavings) { in vp9_prob_diff_update_savings_search()
133 bestsavings = savings; 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
169 savings = old_b - new_b - update_b; in vp9_prob_diff_update_savings_search_model()
170 if (savings > bestsavings) { in vp9_prob_diff_update_savings_search_model()
171 bestsavings = savings; in vp9_prob_diff_update_savings_search_model()
183 const int savings = vp9_prob_diff_update_savings_search(ct, *oldp, &newp, in vp9_cond_prob_diff_update() local
186 if (savings > 0) { in vp9_cond_prob_diff_update()
Dvp9_bitstream.c526 int savings = 0; in update_coef_probs_common() local
547 savings += s - (int)(vp9_cost_zero(upd)); in update_coef_probs_common()
549 savings -= (int)(vp9_cost_zero(upd)); in update_coef_probs_common()
559 if (update[1] == 0 || savings < 0) { in update_coef_probs_common()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dbitstream.c855 int savings = 0; in independent_coef_context_savings() local
918 savings += prev_coef_savings[k]; in independent_coef_context_savings()
925 return savings; in independent_coef_context_savings()
931 int savings = 0; in default_coef_context_savings() local
964 savings += s; in default_coef_context_savings()
974 return savings; in default_coef_context_savings()
1003 int savings = 0; in vp8_estimate_entropy_savings() local
1043 savings += (oldtotal - newtotal) / 256; in vp8_estimate_entropy_savings()
1048 savings += independent_coef_context_savings(cpi); in vp8_estimate_entropy_savings()
1050 savings += default_coef_context_savings(cpi); in vp8_estimate_entropy_savings()
[all …]