• Home
  • Raw
  • Download

Lines Matching refs:inter_pred_params

132                                       InterPredParams *const inter_pred_params,  in init_subpel_params()  argument
135 const struct scale_factors *sf = inter_pred_params->scale_factors; in init_subpel_params()
136 int ssx = inter_pred_params->subsampling_x; in init_subpel_params()
137 int ssy = inter_pred_params->subsampling_y; in init_subpel_params()
138 int orig_pos_y = inter_pred_params->pix_row << SUBPEL_BITS; in init_subpel_params()
140 int orig_pos_x = inter_pred_params->pix_col << SUBPEL_BITS; in init_subpel_params()
157 pos_y = clamp(pos_y, inter_pred_params->top, bottom); in init_subpel_params()
158 pos_x = clamp(pos_x, inter_pred_params->left, right); in init_subpel_params()
186 const MV *const src_mv, InterPredParams *const inter_pred_params, in init_inter_mode_params() argument
189 inter_pred_params->scale_factors = sf; in init_inter_mode_params()
190 init_subpel_params(src_mv, inter_pred_params, subpel_params, width, height); in init_inter_mode_params()
194 static inline void init_inter_block_params(InterPredParams *inter_pred_params, in init_inter_block_params() argument
200 inter_pred_params->block_width = block_width; in init_inter_block_params()
201 inter_pred_params->block_height = block_height; in init_inter_block_params()
202 inter_pred_params->pix_row = pix_row; in init_inter_block_params()
203 inter_pred_params->pix_col = pix_col; in init_inter_block_params()
204 inter_pred_params->subsampling_x = subsampling_x; in init_inter_block_params()
205 inter_pred_params->subsampling_y = subsampling_y; in init_inter_block_params()
206 inter_pred_params->bit_depth = bit_depth; in init_inter_block_params()
207 inter_pred_params->use_hbd_buf = use_hbd_buf; in init_inter_block_params()
208 inter_pred_params->is_intrabc = is_intrabc; in init_inter_block_params()
209 inter_pred_params->mode = TRANSLATION_PRED; in init_inter_block_params()
210 inter_pred_params->comp_mode = UNIFORM_SINGLE; in init_inter_block_params()
211 inter_pred_params->top = -AOM_LEFT_TOP_MARGIN_SCALED(subsampling_y); in init_inter_block_params()
212 inter_pred_params->left = -AOM_LEFT_TOP_MARGIN_SCALED(subsampling_x); in init_inter_block_params()
217 InterPredParams *inter_pred_params, int block_width, int block_height, in av1_init_inter_params() argument
222 init_inter_block_params(inter_pred_params, block_width, block_height, pix_row, in av1_init_inter_params()
225 init_interp_filter_params(inter_pred_params->interp_filter_params, in av1_init_inter_params()
228 inter_pred_params->scale_factors = sf; in av1_init_inter_params()
229 inter_pred_params->ref_frame_buf = *ref_buf; in av1_init_inter_params()
232 static inline void av1_init_comp_mode(InterPredParams *inter_pred_params) { in av1_init_comp_mode() argument
233 inter_pred_params->comp_mode = UNIFORM_COMP; in av1_init_comp_mode()
236 void av1_init_warp_params(InterPredParams *inter_pred_params,
335 InterPredParams *inter_pred_params,
339 InterPredParams *inter_pred_params,