Home
last modified time | relevance | path

Searched refs:MI_SIZE (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_onyxc_int.h272 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in set_mi_row_col()
273 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; in set_mi_row_col()
274 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8); in set_mi_row_col()
275 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; in set_mi_row_col()
Dvp9_reconinter.h53 const int x = (MI_SIZE * mi_col) >> subsampling_x; in setup_pred_plane()
54 const int y = (MI_SIZE * mi_row) >> subsampling_y; in setup_pred_plane()
Dvp9_enums.h19 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit macro
Dvp9_reconinter.c195 const int mi_x = mi_col * MI_SIZE; in build_inter_predictors_for_planes()
196 const int mi_y = mi_row * MI_SIZE; in build_inter_predictors_for_planes()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c542 x->mv_row_min = -(((mi_row + mi_height) * MI_SIZE) + VP9_INTERP_EXTEND); in set_offsets()
543 x->mv_col_min = -(((mi_col + mi_width) * MI_SIZE) + VP9_INTERP_EXTEND); in set_offsets()
544 x->mv_row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
545 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
Dvp9_rdopt.c2316 mi_row * MI_SIZE, mi_col * MI_SIZE); in setup_buffer_inter()