Searched refs:pre_fc (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_entropymode.c | 340 const FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx]; in vp9_adapt_mode_probs() local 344 fc->intra_inter_prob[i] = mode_mv_merge_probs(pre_fc->intra_inter_prob[i], in vp9_adapt_mode_probs() 348 mode_mv_merge_probs(pre_fc->comp_inter_prob[i], counts->comp_inter[i]); in vp9_adapt_mode_probs() 351 mode_mv_merge_probs(pre_fc->comp_ref_prob[i], counts->comp_ref[i]); in vp9_adapt_mode_probs() 355 pre_fc->single_ref_prob[i][j], counts->single_ref[i][j]); in vp9_adapt_mode_probs() 358 vpx_tree_merge_probs(vp9_inter_mode_tree, pre_fc->inter_mode_probs[i], in vp9_adapt_mode_probs() 362 vpx_tree_merge_probs(vp9_intra_mode_tree, pre_fc->y_mode_prob[i], in vp9_adapt_mode_probs() 366 vpx_tree_merge_probs(vp9_intra_mode_tree, pre_fc->uv_mode_prob[i], in vp9_adapt_mode_probs() 370 vpx_tree_merge_probs(vp9_partition_tree, pre_fc->partition_prob[i], in vp9_adapt_mode_probs() 376 vp9_switchable_interp_tree, pre_fc->switchable_interp_prob[i], in vp9_adapt_mode_probs() [all …]
|
D | vp9_entropymv.c | 160 const nmv_context *pre_fc = &cm->frame_contexts[cm->frame_context_idx].nmvc; in vp9_adapt_mv_probs() local 163 vpx_tree_merge_probs(vp9_mv_joint_tree, pre_fc->joints, counts->joints, in vp9_adapt_mv_probs() 168 const nmv_component *pre_comp = &pre_fc->comps[i]; in vp9_adapt_mv_probs()
|
D | vp9_entropy.c | 1056 const FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx]; in adapt_coef_probs() local 1058 const vp9_coeff_probs_model *const pre_probs = pre_fc->coef_probs[tx_size]; in adapt_coef_probs()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 131 const FRAME_CONTEXT *const pre_fc = in compute_context_model_diff() local 143 (pre_fc->y_mode_prob[i][j] - cur_fc->y_mode_prob[i][j]); in compute_context_model_diff() 145 pre_last_prob = MAX_PROB - pre_fc->y_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff() 156 (pre_fc->uv_mode_prob[i][j] - cur_fc->uv_mode_prob[i][j]); in compute_context_model_diff() 158 pre_last_prob = MAX_PROB - pre_fc->uv_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff() 169 (pre_fc->partition_prob[i][j] - cur_fc->partition_prob[i][j]); in compute_context_model_diff() 171 pre_last_prob = MAX_PROB - pre_fc->partition_prob[i][PARTITION_TYPES - 2]; in compute_context_model_diff() 186 (pre_fc->coef_probs[i][j][k][l][m][n] - in compute_context_model_diff() 192 pre_fc->coef_probs[i][j][k][l][m][UNCONSTRAINED_NODES - 1]; in compute_context_model_diff() 209 (pre_fc->switchable_interp_prob[i][j] - in compute_context_model_diff() [all …]
|