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.c237 const int mi_x = mi_col * MI_SIZE; in build_inter_predictors_for_planes()
238 const int mi_y = mi_row * MI_SIZE; in build_inter_predictors_for_planes()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_temporal_filter.c709 if (cm->mi_cols * MI_SIZE != frames[frame]->y_width || in vp9_temporal_filter()
710 cm->mi_rows * MI_SIZE != frames[frame]->y_height) { in vp9_temporal_filter()
Dvp9_rdopt.c1358 mi_col * MI_SIZE + 4 * (i % 2), in encode_inter_mb_segment()
1359 mi_row * MI_SIZE + 4 * (i / 2), xd->bd); in encode_inter_mb_segment()
1366 mi_col * MI_SIZE + 4 * (i % 2), in encode_inter_mb_segment()
1367 mi_row * MI_SIZE + 4 * (i / 2)); in encode_inter_mb_segment()
1375 mi_col * MI_SIZE + 4 * (i % 2), in encode_inter_mb_segment()
1376 mi_row * MI_SIZE + 4 * (i / 2)); in encode_inter_mb_segment()
1627 mi_col * MI_SIZE, mi_row * MI_SIZE, in joint_motion_search()
1637 mi_col * MI_SIZE, mi_row * MI_SIZE); in joint_motion_search()
1646 mi_col * MI_SIZE, mi_row * MI_SIZE); in joint_motion_search()
Dvp9_pickmode.c1867 mi_col * MI_SIZE + 4 * (i & 0x01), in vp9_pick_inter_mode_sub8x8()
1868 mi_row * MI_SIZE + 4 * (i >> 1), xd->bd); in vp9_pick_inter_mode_sub8x8()
1879 mi_col * MI_SIZE + 4 * (i & 0x01), in vp9_pick_inter_mode_sub8x8()
1880 mi_row * MI_SIZE + 4 * (i >> 1)); in vp9_pick_inter_mode_sub8x8()
Dvp9_encodeframe.c150 &last->y_buffer[mi_row * MI_SIZE * last->y_stride + mi_col * MI_SIZE]; in get_sby_perpixel_diff_variance()
205 x->mv_row_min = -(((mi_row + mi_height) * MI_SIZE) + VP9_INTERP_EXTEND); in set_offsets()
206 x->mv_col_min = -(((mi_col + mi_width) * MI_SIZE) + VP9_INTERP_EXTEND); in set_offsets()
207 x->mv_row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
208 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
Dvp9_encoder.c3649 if (cm->mi_cols * MI_SIZE != unscaled->y_width ||
3650 cm->mi_rows * MI_SIZE != unscaled->y_height) {
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c711 const int mi_x = mi_col * MI_SIZE; in dec_build_inter_predictors_sb()
712 const int mi_y = mi_row * MI_SIZE; in dec_build_inter_predictors_sb()