Searched refs:vp9_copy (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_entropymode.c | 324 vp9_copy(fc->uv_mode_prob, default_if_uv_probs); in init_mode_probs() 325 vp9_copy(fc->y_mode_prob, default_if_y_probs); in init_mode_probs() 326 vp9_copy(fc->switchable_interp_prob, default_switchable_interp_prob); in init_mode_probs() 327 vp9_copy(fc->partition_prob, default_partition_probs); in init_mode_probs() 328 vp9_copy(fc->intra_inter_prob, default_intra_inter_p); in init_mode_probs() 329 vp9_copy(fc->comp_inter_prob, default_comp_inter_p); in init_mode_probs() 330 vp9_copy(fc->comp_ref_prob, default_comp_ref_p); in init_mode_probs() 331 vp9_copy(fc->single_ref_prob, default_single_ref_p); in init_mode_probs() 333 vp9_copy(fc->skip_probs, default_skip_probs); in init_mode_probs() 334 vp9_copy(fc->inter_mode_probs, default_inter_mode_probs); in init_mode_probs()
|
D | vp9_entropy.c | 1042 vp9_copy(cm->fc->coef_probs[TX_4X4], default_coef_probs_4x4); in vp9_default_coef_probs() 1043 vp9_copy(cm->fc->coef_probs[TX_8X8], default_coef_probs_8x8); in vp9_default_coef_probs() 1044 vp9_copy(cm->fc->coef_probs[TX_16X16], default_coef_probs_16x16); in vp9_default_coef_probs() 1045 vp9_copy(cm->fc->coef_probs[TX_32X32], default_coef_probs_32x32); in vp9_default_coef_probs()
|
D | vp9_common.h | 29 #define vp9_copy(dest, src) \ macro
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 1084 vp9_copy(cc->nmvjointcost, cpi->td.mb.nmvjointcost); in save_coding_context() 1095 vp9_copy(cc->segment_pred_probs, cm->seg.pred_probs); in save_coding_context() 1100 vp9_copy(cc->last_ref_lf_deltas, cm->lf.last_ref_deltas); in save_coding_context() 1101 vp9_copy(cc->last_mode_lf_deltas, cm->lf.last_mode_deltas); in save_coding_context() 1112 vp9_copy(cpi->td.mb.nmvjointcost, cc->nmvjointcost); in restore_coding_context() 1121 vp9_copy(cm->seg.pred_probs, cc->segment_pred_probs); in restore_coding_context() 1126 vp9_copy(cm->lf.last_ref_deltas, cc->last_ref_lf_deltas); in restore_coding_context() 1127 vp9_copy(cm->lf.last_mode_deltas, cc->last_mode_lf_deltas); in restore_coding_context()
|