Searched refs:MI_SIZE (Results 1 – 10 of 10) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_onyxc_int.h | 401 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()
|
D | vp9_reconinter.h | 97 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()
|
D | vp9_enums.h | 24 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit macro
|
D | vp9_reconinter.c | 237 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/ |
D | vp9_temporal_filter.c | 709 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()
|
D | vp9_rdopt.c | 1358 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()
|
D | vp9_pickmode.c | 1867 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()
|
D | vp9_encodeframe.c | 150 &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()
|
D | vp9_encoder.c | 3649 if (cm->mi_cols * MI_SIZE != unscaled->y_width || 3650 cm->mi_rows * MI_SIZE != unscaled->y_height) {
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 711 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()
|