HomeSort by relevance Sort by last modified time
    Searched defs:mi_row (Results 1 - 7 of 7) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_debugmodes.c 27 int mi_row; local
37 for (mi_row = 0; mi_row < rows; mi_row++) {
51 int mi_row; local
67 for (mi_row = 0; mi_row < rows; mi_row++) {
vp9_loopfilter.c 635 // by mi_row, mi_col.
637 static void setup_mask(VP9_COMMON *const cm, const int mi_row, const int mi_col,
665 const int max_rows = (mi_row + MI_BLOCK_SIZE > cm->mi_rows ?
666 cm->mi_rows - mi_row : MI_BLOCK_SIZE);
798 if (mi_row + MI_BLOCK_SIZE > cm->mi_rows) {
799 const uint64_t rows = cm->mi_rows - mi_row;
1148 int mi_row, mi_col; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mbgraph.c 316 int mi_row, mi_col; local
355 for (mi_row = 0; mi_row < cm->mi_rows; mi_row++) {
359 if (arf_not_zz[mi_row/2*cm->mb_cols + mi_col/2]) {
361 cpi->segmentation_map[mi_row * cm->mi_cols + mi_col] = 0;
363 cpi->segmentation_map[mi_row * cm->mi_cols + mi_col] = 1;
vp9_segmentation.c 125 int bw, int bh, int mi_row, int mi_col) {
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);
146 bsize, mi_row, mi_col);
166 int mi_row, int mi_col,
173 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
181 t_unpred_seg_counts, bs, bs, mi_row, mi_col);
184 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
187 mi_row + hbs, mi_col);
190 t_unpred_seg_counts, hbs, bs, mi_row, mi_col)
219 int i, tile_col, mi_row, mi_col; local
    [all...]
vp9_bitstream.c 549 int mi_row, int mi_col) {
554 xd->mi_8x8 = cm->mi_grid_visible + (mi_row * cm->mode_info_stride + mi_col);
558 mi_row, num_8x8_blocks_high_lookup[m->mbmi.sb_type],
577 static void write_partition(VP9_COMP *cpi, int hbs, int mi_row, int mi_col,
582 mi_row, mi_col, bsize);
584 const int has_rows = (mi_row + hbs) < cm->mi_rows;
602 int mi_row, int mi_col, BLOCK_SIZE bsize) {
608 MODE_INFO *m = cm->mi_grid_visible[mi_row * cm->mode_info_stride + mi_col];
610 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
614 write_partition(cpi, bs, mi_row, mi_col, partition, bsize, w)
656 int mi_row, mi_col; local
    [all...]
vp9_encodeframe.c 79 int mi_row, int mi_col, BLOCK_SIZE bsize);
492 int mi_row, int mi_col) {
500 setup_pred_plane(&x->plane[i].src, buffers[i], strides[i], mi_row, mi_col,
506 int mi_row, int mi_col, BLOCK_SIZE bsize) {
512 const int idx_str = xd->mode_info_stride * mi_row + mi_col;
515 const int mb_row = mi_row >> 1;
520 set_skip_context(xd, cpi->above_context, cpi->left_context, mi_row, mi_col);
538 setup_dst_planes(xd, &cm->yv12_fb[dst_fb_idx], mi_row, mi_col);
542 x->mv_row_min = -(((mi_row + mi_height) * MI_SIZE) + VP9_INTERP_EXTEND);
544 x->mv_row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND
1932 int mi_row; local
2144 int mi_row, mi_col; local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 355 BLOCK_SIZE bsize, int mi_row, int mi_col) {
358 const int offset = mi_row * cm->mode_info_stride + mi_col;
373 set_skip_context(xd, xd->above_context, xd->left_context, mi_row, mi_col);
377 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
379 setup_dst_planes(xd, get_frame_new_buffer(cm), mi_row, mi_col);
383 int idx, int mi_row, int mi_col) {
393 setup_pre_planes(xd, idx, cfg, mi_row, mi_col, &xd->scale_factor[idx]);
399 int mi_row, int mi_col,
405 set_offsets(cm, xd, tile, bsize, mi_row, mi_col);
406 vp9_read_mode_info(cm, xd, tile, mi_row, mi_col, r)
785 int mi_row, mi_col; local
957 int mi_row, mi_col; local
    [all...]

Completed in 215 milliseconds