Home
last modified time | relevance | path

Searched refs:pre_fc (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_entropymode.c343 const FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx]; in vp9_adapt_mode_probs() local
347 fc->intra_inter_prob[i] = mode_mv_merge_probs(pre_fc->intra_inter_prob[i], in vp9_adapt_mode_probs()
351 mode_mv_merge_probs(pre_fc->comp_inter_prob[i], counts->comp_inter[i]); in vp9_adapt_mode_probs()
354 mode_mv_merge_probs(pre_fc->comp_ref_prob[i], counts->comp_ref[i]); in vp9_adapt_mode_probs()
358 pre_fc->single_ref_prob[i][j], counts->single_ref[i][j]); in vp9_adapt_mode_probs()
361 vpx_tree_merge_probs(vp9_inter_mode_tree, pre_fc->inter_mode_probs[i], in vp9_adapt_mode_probs()
365 vpx_tree_merge_probs(vp9_intra_mode_tree, pre_fc->y_mode_prob[i], in vp9_adapt_mode_probs()
369 vpx_tree_merge_probs(vp9_intra_mode_tree, pre_fc->uv_mode_prob[i], in vp9_adapt_mode_probs()
373 vpx_tree_merge_probs(vp9_partition_tree, pre_fc->partition_prob[i], in vp9_adapt_mode_probs()
379 vp9_switchable_interp_tree, pre_fc->switchable_interp_prob[i], in vp9_adapt_mode_probs()
[all …]
Dvp9_entropymv.c158 const nmv_context *pre_fc = &cm->frame_contexts[cm->frame_context_idx].nmvc; in vp9_adapt_mv_probs() local
161 vpx_tree_merge_probs(vp9_mv_joint_tree, pre_fc->joints, counts->joints, in vp9_adapt_mv_probs()
166 const nmv_component *pre_comp = &pre_fc->comps[i]; in vp9_adapt_mv_probs()
Dvp9_entropy.c1058 const FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx]; in adapt_coef_probs() local
1060 const vp9_coeff_probs_model *const pre_probs = pre_fc->coef_probs[tx_size]; in adapt_coef_probs()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c162 const FRAME_CONTEXT *const pre_fc = in compute_context_model_diff() local
174 (pre_fc->y_mode_prob[i][j] - cur_fc->y_mode_prob[i][j]); in compute_context_model_diff()
176 pre_last_prob = MAX_PROB - pre_fc->y_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
187 (pre_fc->uv_mode_prob[i][j] - cur_fc->uv_mode_prob[i][j]); in compute_context_model_diff()
189 pre_last_prob = MAX_PROB - pre_fc->uv_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
200 (pre_fc->partition_prob[i][j] - cur_fc->partition_prob[i][j]); in compute_context_model_diff()
202 pre_last_prob = MAX_PROB - pre_fc->partition_prob[i][PARTITION_TYPES - 2]; in compute_context_model_diff()
217 (pre_fc->coef_probs[i][j][k][l][m][n] - in compute_context_model_diff()
223 pre_fc->coef_probs[i][j][k][l][m][UNCONSTRAINED_NODES - 1]; in compute_context_model_diff()
240 (pre_fc->switchable_interp_prob[i][j] - in compute_context_model_diff()
[all …]