Searched defs:mi_cols (Results 1 - 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_tile_common.c27 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols);
28 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols);
31 void vp9_get_tile_n_bits(int mi_cols, argument
33 const int sb_cols = mi_cols_aligned_to_sb(mi_cols) >> MI_BLOCK_SIZE_LOG2;
H A Dvp9_onyxc_int.h128 int mb_cols, mi_cols; member in struct:VP9Common
246 i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
273 int mi_rows, int mi_cols) {
277 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c50 CYCLIC_REFRESH *vp9_cyclic_refresh_alloc(int mi_rows, int mi_cols) { argument
55 cr->map = vpx_calloc(mi_rows * mi_cols, sizeof(*cr->map));
76 // Number of (8x8) blocks in frame = mi_rows * mi_cols;
78 const int number_blocks = cm->mi_rows * cm->mi_cols;
136 const int xmis = MIN(cm->mi_cols - mi_col, bw);
138 const int block_index = mi_row * cm->mi_cols + mi_col;
168 cr->map[block_index + y * cm->mi_cols + x] = new_map_value;
169 cpi->segmentation_map[block_index + y * cm->mi_cols + x] =
191 vpx_memset(seg_map, 0, cm->mi_rows * cm->mi_cols);
225 vpx_memset(seg_map, 0, cm->mi_rows * cm->mi_cols);
[all...]

Completed in 235 milliseconds