Home
last modified time | relevance | path

Searched refs:newp (Results 1 – 5 of 5) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_subexp.c76 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) { in prob_diff_update_cost() argument
77 int delp = remap_prob(newp, oldp); in prob_diff_update_cost()
109 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) { in vp9_write_prob_diff_update() argument
110 const int delp = remap_prob(newp, oldp); in vp9_write_prob_diff_update()
125 vp9_prob newp, bestnewp = oldp; in vp9_prob_diff_update_savings_search() local
128 for (newp = *bestp; newp != oldp; newp += step) { in vp9_prob_diff_update_savings_search()
129 const int new_b = cost_branch256(ct, newp); in vp9_prob_diff_update_savings_search()
130 const int update_b = prob_diff_update_cost(newp, oldp) + vp9_cost_upd256; in vp9_prob_diff_update_savings_search()
134 bestnewp = newp; in vp9_prob_diff_update_savings_search()
146 int newp; in vp9_prob_diff_update_savings_search_model() local
[all …]
Dvp9_bitstream.c533 vp9_prob newp = new_frame_coef_probs[i][j][k][l][t]; in update_coef_probs_common() local
540 old_frame_coef_probs[i][j][k][l], &newp, upd); in update_coef_probs_common()
543 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd); in update_coef_probs_common()
544 if (s > 0 && newp != oldp) in update_coef_probs_common()
570 vp9_prob newp = new_frame_coef_probs[i][j][k][l][t]; in update_coef_probs_common() local
578 old_frame_coef_probs[i][j][k][l], &newp, upd); in update_coef_probs_common()
582 *oldp, &newp, upd); in update_coef_probs_common()
583 if (s > 0 && newp != *oldp) in update_coef_probs_common()
588 vp9_write_prob_diff_update(bc, newp, *oldp); in update_coef_probs_common()
589 *oldp = newp; in update_coef_probs_common()
[all …]
Dvp9_subexp.h23 vp9_prob newp, vp9_prob oldp);
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcm_mpool_pub.h178 bcm_mp_pool_h *newp);
217 bcm_mp_pool_h *newp);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dbitstream.c841 const vp8_prob oldp, const vp8_prob newp, in prob_update_savings() argument
845 const int new_b = vp8_cost_branch(ct, newp); in prob_update_savings()
896 const vp8_prob newp = cpi->frame_coef_probs [i][j][k][t]; in independent_coef_context_savings() local
899 const int s = prob_update_savings(ct, oldp, newp, upd); in independent_coef_context_savings()
902 (cpi->common.frame_type == KEY_FRAME && newp != oldp)) in independent_coef_context_savings()
957 const vp8_prob newp = cpi->frame_coef_probs [i][j][k][t]; in default_coef_context_savings() local
960 const int s = prob_update_savings(ct, oldp, newp, upd); in default_coef_context_savings()
1104 const vp8_prob newp = cpi->frame_coef_probs[i][j][k][t]; in vp8_update_coef_probs() local
1110 prob_update_savings(ct, oldp, newp, upd); in vp8_update_coef_probs()
1128 const vp8_prob newp = cpi->frame_coef_probs [i][j][k][t]; in vp8_update_coef_probs() local
[all …]