/external/libvpx/libvpx/vp9/common/ |
vp9_alloccommon.c | 30 for (i = 1; i < cm->mi_rows + 1; i++) 57 cm->mi_rows = aligned_height >> MI_SIZE_LOG2; 61 cm->mb_rows = (cm->mi_rows + 1) >> 1; 72 cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO)); 75 cm->mode_info_stride * (cm->mi_rows + 1) * 96 mi_size = cm->mode_info_stride * (cm->mi_rows + MI_BLOCK_SIZE); 122 cm->last_frame_seg_map = vpx_calloc(cm->mi_rows * cm->mi_cols, 1); 169 mi_size = cm->mode_info_stride * (cm->mi_rows + MI_BLOCK_SIZE); 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) [all...] |
vp9_debugmodes.c | 31 int rows = cm->mi_rows; 56 int rows = cm->mi_rows;
|
vp9_mvref_common.c | 174 int mi_col, int mi_row, int mi_rows, 178 mi_row + mv->row >= mi_rows || 206 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) { 233 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) { 263 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
|
vp9_tile_common.c | 35 row_idx, cm->log2_tile_rows, cm->mi_rows);
|
vp9_loopfilter.c | 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; [all...] |
vp9_entropymode.c | 456 vpx_memset(cm->last_frame_seg_map, 0, (cm->mi_rows * cm->mi_cols)); 482 cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO)); 484 cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO));
|
vp9_onyxc_int.h | 143 // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in 146 int mb_rows, mi_rows; member in struct:VP9Common 271 int mi_rows, int mi_cols) { 273 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8;
|
vp9_pred_common.c | 409 const int ymis = MIN(cm->mi_rows - mi_row, bh);
|
/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) 244 for (mi_row = 0; mi_row < cm->mi_rows;
|
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 | 544 x->mv_row_max = (cm->mi_rows - mi_row) * 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_mbgraph.c | 355 for (mi_row = 0; mi_row < cm->mi_rows; mi_row++) { 374 cpi->static_mb_pct = (ncnt[1] * 100) / (cm->mi_rows * cm->mi_cols);
|
vp9_bitstream.c | 560 cm->mi_rows, cm->mi_cols); 584 const int has_rows = (mi_row + hbs) < cm->mi_rows; 610 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) 625 if (mi_row + bs < cm->mi_rows) [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); 542 for (row = 0; row < cpi->common.mi_rows; row++) { 560 for (row = 0; row < cm->mi_rows; row++) { [all...] |
vp9_firstpass.c | 585 if (mb_row * 2 + 1 < cm->mi_rows) { 591 if (mb_row * 2 + 1 < cm->mi_rows) { 603 cm->mi_rows, cm->mi_cols); [all...] |
vp9_rdopt.c | [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodframe.c | 377 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols); 462 const int has_rows = (mi_row + hbs) < cm->mi_rows; 490 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) 504 if (mi_row + hbs < cm->mi_rows) 835 lf_data->stop = cm->mi_rows; [all...] |
vp9_decodemv.c | 95 const int ymis = MIN(cm->mi_rows - mi_row, bh); 558 const int y_mis = MIN(bh, cm->mi_rows - mi_row);
|