Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/common/
Dvp9_onyxc_int.h401 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in set_mi_row_col()
402 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; in set_mi_row_col()
403 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8); in set_mi_row_col()
404 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; in set_mi_row_col()
Dvp9_reconinter.h97 const int x = (MI_SIZE * mi_col) >> subsampling_x; in setup_pred_plane()
98 const int y = (MI_SIZE * mi_row) >> subsampling_y; in setup_pred_plane()
Dvp9_enums.h24 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit macro
Dvp9_reconinter.c225 const int mi_x = mi_col * MI_SIZE; in build_inter_predictors_for_planes()
226 const int mi_y = mi_row * MI_SIZE; in build_inter_predictors_for_planes()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_temporal_filter.c706 if (cm->mi_cols * MI_SIZE != frames[frame]->y_width || in vp9_temporal_filter()
707 cm->mi_rows * MI_SIZE != frames[frame]->y_height) { in vp9_temporal_filter()
Dvp9_rdopt.c1324 mi_col * MI_SIZE + 4 * (i % 2), in encode_inter_mb_segment()
1325 mi_row * MI_SIZE + 4 * (i / 2), xd->bd); in encode_inter_mb_segment()
1332 mi_col * MI_SIZE + 4 * (i % 2), in encode_inter_mb_segment()
1333 mi_row * MI_SIZE + 4 * (i / 2)); in encode_inter_mb_segment()
1341 mi_col * MI_SIZE + 4 * (i % 2), in encode_inter_mb_segment()
1342 mi_row * MI_SIZE + 4 * (i / 2)); in encode_inter_mb_segment()
1596 mi_col * MI_SIZE, mi_row * MI_SIZE, in joint_motion_search()
1606 mi_col * MI_SIZE, mi_row * MI_SIZE); in joint_motion_search()
1615 mi_col * MI_SIZE, mi_row * MI_SIZE); in joint_motion_search()
Dvp9_pickmode.c1846 mi_col * MI_SIZE + 4 * (i & 0x01), in vp9_pick_inter_mode_sub8x8()
1847 mi_row * MI_SIZE + 4 * (i >> 1), xd->bd); in vp9_pick_inter_mode_sub8x8()
1858 mi_col * MI_SIZE + 4 * (i & 0x01), in vp9_pick_inter_mode_sub8x8()
1859 mi_row * MI_SIZE + 4 * (i >> 1)); in vp9_pick_inter_mode_sub8x8()
Dvp9_encodeframe.c149 &last->y_buffer[mi_row * MI_SIZE * last->y_stride + mi_col * MI_SIZE]; in get_sby_perpixel_diff_variance()
204 x->mv_row_min = -(((mi_row + mi_height) * MI_SIZE) + VP9_INTERP_EXTEND); in set_offsets()
205 x->mv_col_min = -(((mi_col + mi_width) * MI_SIZE) + VP9_INTERP_EXTEND); in set_offsets()
206 x->mv_row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
207 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
Dvp9_encoder.c3588 if (cm->mi_cols * MI_SIZE != unscaled->y_width ||
3589 cm->mi_rows * MI_SIZE != unscaled->y_height) {
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c710 const int mi_x = mi_col * MI_SIZE; in dec_build_inter_predictors_sb()
711 const int mi_y = mi_row * MI_SIZE; in dec_build_inter_predictors_sb()