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

/external/libvpx/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
249 i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
276 int mi_rows, int mi_cols) {
280 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_tile_common.c30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols);
31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols);
39 void vp9_get_tile_n_bits(int mi_cols, argument
41 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
250 i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
286 int mi_rows, int mi_cols) {
290 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.c49 CYCLIC_REFRESH *vp9_cyclic_refresh_alloc(int mi_rows, int mi_cols) { argument
54 cr->map = vpx_calloc(mi_rows * mi_cols, sizeof(*cr->map));
75 // Number of (8x8) blocks in frame = mi_rows * mi_cols;
77 const int number_blocks = cm->mi_rows * cm->mi_cols;
135 const int xmis = MIN(cm->mi_cols - mi_col, bw);
137 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);
224 vpx_memset(seg_map, 0, cm->mi_rows * cm->mi_cols);
[all...]
H A Dvp9_encoder.c253 cm->last_frame_seg_map, (cm->mi_rows * cm->mi_cols));
282 (cm->mi_rows * cm->mi_cols));
301 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
314 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
375 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
423 for (col = 0; col < cm->mi_cols; col++, mi_8x8++, cache++)
426 cache_ptr += cm->mi_cols;
540 vp9_get_tile_n_bits(cm->mi_cols, &min_log2_tile_cols, &max_log2_tile_cols);
779 vpx_calloc(cm->mi_rows * cm->mi_cols, 1));
783 vpx_calloc(cm->mi_rows * cm->mi_cols,
2944 const int mi_cols = cpi->common.mi_cols; local
[all...]
/external/libvpx/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 200 milliseconds