HomeSort by relevance Sort by last modified time
    Searched refs:mi_cols (Results 1 - 18 of 18) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_tile_common.h 26 void vp9_get_tile_n_bits(int mi_cols,
vp9_tile_common.c 37 col_idx, cm->log2_tile_cols, cm->mi_cols);
40 void vp9_get_tile_n_bits(int mi_cols,
42 const int sb_cols = to_sbs(mi_cols);
vp9_debugmodes.c 32 int cols = cm->mi_cols;
57 int cols = cm->mi_cols;
vp9_alloccommon.c 56 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
58 cm->mode_info_stride = cm->mi_cols + MI_BLOCK_SIZE;
60 cm->mb_cols = (cm->mi_cols + 1) >> 1;
122 cm->last_frame_seg_map = vpx_calloc(cm->mi_rows * cm->mi_cols, 1);
190 cm->last_frame_seg_map = vpx_calloc(cm->mi_rows * cm->mi_cols, 1);
228 vpx_memset(cm->last_frame_seg_map, 0, cm->mi_rows * cm->mi_cols);
vp9_onyxc_int.h 147 int mb_cols, mi_cols; member in struct:VP9Common
271 int mi_rows, int mi_cols) {
275 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
vp9_pred_common.c 405 const int mi_offset = mi_row * cm->mi_cols + mi_col;
408 const int xmis = MIN(cm->mi_cols - mi_col, bw);
415 segment_ids[mi_offset + y * cm->mi_cols + x]);
vp9_loopfilter.c 667 const int max_cols = (mi_col + MI_BLOCK_SIZE > cm->mi_cols ?
668 cm->mi_cols - mi_col : MI_BLOCK_SIZE);
827 if (mi_col + MI_BLOCK_SIZE > cm->mi_cols) {
828 const uint64_t columns = cm->mi_cols - mi_col;
    [all...]
vp9_entropymode.c 456 vpx_memset(cm->last_frame_seg_map, 0, (cm->mi_rows * cm->mi_cols));
  /external/libvpx/libvpx/vp9/encoder/
vp9_segmentation.c 40 (cpi->common.mi_rows * cpi->common.mi_cols));
130 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
136 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
173 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
vp9_mbgraph.c 356 for (mi_col = 0; mi_col < cm->mi_cols; mi_col++) {
361 cpi->segmentation_map[mi_row * cm->mi_cols + mi_col] = 0;
363 cpi->segmentation_map[mi_row * cm->mi_cols + mi_col] = 1;
374 cpi->static_mb_pct = (ncnt[1] * 100) / (cm->mi_rows * cm->mi_cols);
vp9_ratectrl.c 85 cm->last_frame_seg_map, (cm->mi_rows * cm->mi_cols));
107 (cm->mi_rows * cm->mi_cols));
vp9_encodeframe.c 545 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND;
550 cm->mi_rows, cm->mi_cols);
804 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
840 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
    [all...]
vp9_bitstream.c 560 cm->mi_rows, cm->mi_cols);
585 const int has_cols = (mi_col + hbs) < cm->mi_cols;
610 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
630 if (mi_col + bs < cm->mi_cols)
    [all...]
vp9_onyx_if.c 358 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
371 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
431 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
543 for (col = 0; col < cpi->common.mi_cols; col++) {
563 for (col = 0; col < cm->mi_cols; col++, mi_8x8++, cache++)
566 cache_ptr += cm->mi_cols;
    [all...]
vp9_firstpass.c 584 if (mb_col * 2 + 1 < cm->mi_cols) {
603 cm->mi_rows, cm->mi_cols);
    [all...]
vp9_rdopt.c     [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 208 const int aligned_mi_cols = mi_cols_aligned_to_sb(cm->mi_cols);
377 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
463 const int has_cols = (mi_col + hbs) < cm->mi_cols;
490 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
510 if (mi_col + hbs < cm->mi_cols)
842 vp9_get_tile_n_bits(cm->mi_cols, &min_log2_tile_cols, &max_log2_tile_cols);
885 const int aligned_cols = mi_cols_aligned_to_sb(cm->mi_cols);
    [all...]
vp9_decodemv.c 91 const int mi_offset = mi_row * cm->mi_cols + mi_col;
94 const int xmis = MIN(cm->mi_cols - mi_col, bw);
102 cm->last_frame_seg_map[mi_offset + y * cm->mi_cols + x] = segment_id;
559 const int x_mis = MIN(bw, cm->mi_cols - mi_col);

Completed in 128 milliseconds