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

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

Completed in 142 milliseconds