HomeSort by relevance Sort by last modified time
    Searched refs:MI_SIZE (Results 1 - 25 of 38) sorted by null

1 2

  /external/libaom/libaom/test/
intrabc_test.cc 42 MAX_SB_SIZE / MI_SIZE,
43 MAX_SB_SIZE / MI_SIZE,
47 MAX_SB_SIZE / MI_SIZE,
48 MAX_SB_SIZE / MI_SIZE,
52 MAX_SB_SIZE / MI_SIZE,
53 MAX_SB_SIZE / MI_SIZE,
57 MAX_SB_SIZE / MI_SIZE,
58 MAX_SB_SIZE / MI_SIZE,
62 MAX_SB_SIZE / MI_SIZE,
63 MAX_SB_SIZE / MI_SIZE,
    [all...]
  /external/libaom/libaom/av1/encoder/
partition_strategy.h 97 -(((mi_row + mi_height) * MI_SIZE) + AOM_INTERP_EXTEND);
98 x->mv_limits.col_min = -(((mi_col + mi_width) * MI_SIZE) + AOM_INTERP_EXTEND);
99 x->mv_limits.row_max = (cm->mi_rows - mi_row) * MI_SIZE + AOM_INTERP_EXTEND;
100 x->mv_limits.col_max = (cm->mi_cols - mi_col) * MI_SIZE + AOM_INTERP_EXTEND;
106 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
107 xd->mb_to_bottom_edge = ((cm->mi_rows - mi_height - mi_row) * MI_SIZE) * 8;
108 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
109 xd->mb_to_right_edge = ((cm->mi_cols - mi_width - mi_col) * MI_SIZE) * 8;
tpl_model.c 99 &best_ref_mv1, INT_MAX, 0, (MI_SIZE * mi_col),
100 (MI_SIZE * mi_row), 0, &cpi->ss_cfg[SS_CFG_SRC]);
140 int mb_y_offset = mi_row * MI_SIZE * xd->cur_buf->y_stride + mi_col * MI_SIZE;
145 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
146 xd->mb_to_bottom_edge = ((cm->mi_rows - 1 - mi_row) * MI_SIZE) * 8;
147 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
148 xd->mb_to_right_edge = ((cm->mi_cols - 1 - mi_col) * MI_SIZE) * 8;
190 x->mv_limits.col_min = -((mi_col * MI_SIZE) + (17 - 2 * AOM_INTERP_EXTEND));
192 ((cm->mi_cols - 1 - mi_col) * MI_SIZE) + (17 - 2 * AOM_INTERP_EXTEND)
    [all...]
aq_variance.c 117 const int bw = MI_SIZE * mi_size_wide[bs] - right_overflow;
118 const int bh = MI_SIZE * mi_size_high[bs] - bottom_overflow;
154 const int bw = MI_SIZE * mi_size_wide[bs];
155 const int bh = MI_SIZE * mi_size_high[bs];
reconinter_enc.c 106 const int pre_x = (mi_x + MI_SIZE * col_start) >> ss_x;
107 const int pre_y = (mi_y + MI_SIZE * row_start) >> ss_y;
249 const int mi_x = mi_col * MI_SIZE;
250 const int mi_y = mi_row * MI_SIZE;
325 int bw = (above_mi_width * MI_SIZE) >> pd->subsampling_x;
346 int this_height = xd->n4_h * MI_SIZE;
359 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
401 int this_width = xd->n4_w * MI_SIZE;
414 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
499 const int mi_x = mi_col * MI_SIZE;
    [all...]
level.c 400 (tile_info->mi_col_end - tile_info->mi_col_start) * MI_SIZE;
402 (tile_info->mi_row_end - tile_info->mi_row_start) * MI_SIZE;
412 cm->width - tile_info->mi_col_start * MI_SIZE;
414 cm->height - tile_info->mi_row_start * MI_SIZE;
pickcdef.c 347 32, sizeof(*src) * cm->mi_rows * cm->mi_cols * MI_SIZE * MI_SIZE);
349 32, sizeof(*ref_coeff) * cm->mi_rows * cm->mi_cols * MI_SIZE * MI_SIZE);
359 (cm->mi_rows * MI_SIZE) >> xd->plane[pli].subsampling_y;
361 (cm->mi_cols * MI_SIZE) >> xd->plane[pli].subsampling_x;
  /external/libaom/libaom/av1/common/
mvref_common.h 276 ref_dv->as_mv.col = -MI_SIZE * mib_size - INTRABC_DELAY_PIXELS;
278 ref_dv->as_mv.row = -MI_SIZE * mib_size;
298 const int src_top_edge = mi_row * MI_SIZE * SCALE_PX_TO_MV + dv.row;
299 const int tile_top_edge = tile->mi_row_start * MI_SIZE * SCALE_PX_TO_MV;
301 const int src_left_edge = mi_col * MI_SIZE * SCALE_PX_TO_MV + dv.col;
302 const int tile_left_edge = tile->mi_col_start * MI_SIZE * SCALE_PX_TO_MV;
305 const int src_bottom_edge = (mi_row * MI_SIZE + bh) * SCALE_PX_TO_MV + dv.row;
306 const int tile_bottom_edge = tile->mi_row_end * MI_SIZE * SCALE_PX_TO_MV;
308 const int src_right_edge = (mi_col * MI_SIZE + bw) * SCALE_PX_TO_MV + dv.col;
309 const int tile_right_edge = tile->mi_col_end * MI_SIZE * SCALE_PX_TO_MV
    [all...]
tile_common.c 166 r.left = tile_info->mi_col_start * MI_SIZE;
167 r.right = tile_info->mi_col_end * MI_SIZE;
168 r.top = tile_info->mi_row_start * MI_SIZE;
169 r.bottom = tile_info->mi_row_end * MI_SIZE;
av1_loopfilter.c     [all...]
mv.h 164 return mi_col * MI_SIZE + bw / 2 - 1;
169 return mi_row * MI_SIZE + bh / 2 - 1;
onyxc_int.h 433 int (*alloc_mi)(struct AV1Common *cm, int mi_size);
817 xd->plane[i].width = (bw * MI_SIZE) >> xd->plane[i].subsampling_x;
818 xd->plane[i].height = (bh * MI_SIZE) >> xd->plane[i].subsampling_y;
828 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
829 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8;
830 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
831 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
    [all...]
reconinter.c     [all...]
reconinter.h 270 const int x = (MI_SIZE * mi_col) >> subsampling_x;
271 const int y = (MI_SIZE * mi_row) >> subsampling_y;
warped_motion.c     [all...]
enums.h 37 #define MI_SIZE (1 << MI_SIZE_LOG2)
  /external/libvpx/libvpx/vp9/common/
vp9_enums.h 24 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit
vp9_reconinter.h 88 const int x = (MI_SIZE * mi_col) >> subsampling_x;
89 const int y = (MI_SIZE * mi_row) >> subsampling_y;
vp9_onyxc_int.h 185 int (*alloc_mi)(struct VP9Common *cm, int mi_size);
375 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
376 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8;
377 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
378 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
vp9_reconinter.c 212 const int mi_x = mi_col * MI_SIZE;
213 const int mi_y = mi_row * MI_SIZE;
  /external/libaom/libaom/av1/
av1_dx_iface.c 799 ctx->img.planes[0] += mi_row * MI_SIZE * ctx->img.stride[0];
803 mi_row * (MI_SIZE >> ssy) * ctx->img.stride[plane];
806 ctx->img.d_h = AOMMIN(tile_height, cm->mi_rows - mi_row) * MI_SIZE;
819 ctx->img.planes[0] += mi_col * MI_SIZE * (1 + is_hbd);
823 mi_col * (MI_SIZE >> ssx) * (1 + is_hbd);
826 ctx->img.d_w = AOMMIN(tile_width, cm->mi_cols - mi_col) * MI_SIZE;
    [all...]
  /external/libaom/libaom/aom_dsp/x86/
variance_sse2.c 515 const int mi_x = mi_col * MI_SIZE;
516 const int mi_y = mi_row * MI_SIZE;
521 const int pre_x = (mi_x + MI_SIZE * col_start) >> ssx;
522 const int pre_y = (mi_y + MI_SIZE * row_start) >> ssy;
    [all...]
highbd_variance_sse2.c     [all...]
  /external/libaom/libaom/av1/decoder/
obu.c 366 const int tile_width_in_pixels = tile_width * MI_SIZE;
367 const int tile_height_in_pixels = tile_height * MI_SIZE;
419 const int tile_width_in_pixels = tile_width * MI_SIZE;
420 const int tile_height_in_pixels = tile_height * MI_SIZE;
    [all...]
  /external/libaom/libaom/aom_dsp/
variance.c 312 const int mi_x = mi_col * MI_SIZE;
313 const int mi_y = mi_row * MI_SIZE;
318 const int pre_x = (mi_x + MI_SIZE * col_start) >> ssx;
319 const int pre_y = (mi_y + MI_SIZE * row_start) >> ssy;
    [all...]

Completed in 3098 milliseconds

1 2