Lines Matching defs:fc

317 void vp9_init_mode_probs(FRAME_CONTEXT *fc) {
318 vp9_copy(fc->uv_mode_prob, default_if_uv_probs);
319 vp9_copy(fc->y_mode_prob, default_if_y_probs);
320 vp9_copy(fc->switchable_interp_prob, default_switchable_interp_prob);
321 vp9_copy(fc->partition_prob, default_partition_probs);
322 vp9_copy(fc->intra_inter_prob, default_intra_inter_p);
323 vp9_copy(fc->comp_inter_prob, default_comp_inter_p);
324 vp9_copy(fc->comp_ref_prob, default_comp_ref_p);
325 vp9_copy(fc->single_ref_prob, default_single_ref_p);
326 fc->tx_probs = default_tx_probs;
327 vp9_copy(fc->skip_probs, default_skip_probs);
328 vp9_copy(fc->inter_mode_probs, default_inter_mode_probs);
353 FRAME_CONTEXT *fc = &cm->fc;
358 fc->intra_inter_prob[i] = adapt_prob(pre_fc->intra_inter_prob[i],
361 fc->comp_inter_prob[i] = adapt_prob(pre_fc->comp_inter_prob[i],
364 fc->comp_ref_prob[i] = adapt_prob(pre_fc->comp_ref_prob[i],
368 fc->single_ref_prob[i][j] = adapt_prob(pre_fc->single_ref_prob[i][j],
373 counts->inter_mode[i], fc->inter_mode_probs[i]);
377 counts->y_mode[i], fc->y_mode_prob[i]);
381 counts->uv_mode[i], fc->uv_mode_prob[i]);
385 counts->partition[i], fc->partition_prob[i]);
390 counts->switchable_interp[i], fc->switchable_interp_prob[i]);
402 fc->tx_probs.p8x8[i][j] = adapt_prob(pre_fc->tx_probs.p8x8[i][j],
407 fc->tx_probs.p16x16[i][j] = adapt_prob(pre_fc->tx_probs.p16x16[i][j],
412 fc->tx_probs.p32x32[i][j] = adapt_prob(pre_fc->tx_probs.p32x32[i][j],
418 fc->skip_probs[i] = adapt_prob(pre_fc->skip_probs[i], counts->skip[i]);
454 vp9_init_mode_probs(&cm->fc);
461 cm->frame_contexts[i] = cm->fc;
464 cm->frame_contexts[cm->frame_context_idx] = cm->fc;