/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_temporal_filter.c | 197 int mb_col, mb_row; local 239 for (mb_col = 0; mb_col < mb_cols; mb_col++) { 247 cpi->mb.mv_col_min = -((mb_col * 16) + (17 - 2 * VP9_INTERP_EXTEND)); 248 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16) 293 mb_col * 16, mb_row * 16);
|
vp9_firstpass.c | 461 static BLOCK_SIZE get_bsize(const VP9_COMMON *cm, int mb_row, int mb_col) { 462 if (2 * mb_col + 1 < cm->mi_cols) { 472 int mb_row, mb_col; local 580 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) { 582 const int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); 584 const BLOCK_SIZE bsize = get_bsize(cm, mb_row, mb_col); 591 xd->left_available = (mb_col != 0) [all...] |
vp9_encodeframe.c | 177 const int mb_col = mi_col >> 1; local 182 return cpi->active_map[mb_row * mb_cols + mb_col]; 187 int col = mb_col + c; 216 const int mb_col = mi_col >> 1; local 217 const int idx_map = mb_row * cm->mb_cols + mb_col; 267 const int x = mb_col & ~3; 268 const int p16 = ((mb_row & 1) << 1) + (mb_col & 1); 269 const int p32 = ((mb_row & 2) << 2) + ((mb_col & 2) << 1); 626 static unsigned int mb_activity_measure(MACROBLOCK *x, int mb_row, int mb_col) { 630 const int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row) 703 int mb_row, mb_col; local 764 int mb_row, mb_col; local [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
decodeframe.c | 514 int mb_row, mb_col; local 599 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++) 605 xd->mb_to_left_edge = -((mb_col * 16) << 3); 606 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; 627 mb_row, mb_col, [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
encodeframe.c | 118 int mb_row, int mb_col) 124 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); 209 int mb_row, mb_col; local 227 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) 276 int mb_row, mb_col; local 289 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++ 373 int mb_col; local [all...] |
bitstream.c | 565 int mb_col = -1; local 567 while (++mb_col < pc->mb_cols) 579 xd->mb_to_left_edge = -((mb_col * 16) << 3); 580 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; 748 int mb_col = -1; local 750 while (++mb_col < c->mb_cols) [all...] |
firstpass.c | 510 int mb_row, mb_col; local 599 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) 603 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); 608 xd->left_available = (mb_col != 0); 633 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16)); 634 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); 757 if (mb_col < cm->mb_cols / 2 [all...] |
onyx_if.c | 4691 int mb_col; local 4715 int mb_col; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
decodeframe.c | 510 int mb_row, mb_col; local 595 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++) 601 xd->mb_to_left_edge = -((mb_col * 16) << 3); 602 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; 623 mb_row, mb_col, [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
encodeframe.c | 117 int mb_row, int mb_col) 123 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); 208 int mb_row, mb_col; local 226 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) 275 int mb_row, mb_col; local 288 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++ 372 int mb_col; local [all...] |
bitstream.c | 564 int mb_col = -1; local 566 while (++mb_col < pc->mb_cols) 578 xd->mb_to_left_edge = -((mb_col * 16) << 3); 579 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; 747 int mb_col = -1; local 749 while (++mb_col < c->mb_cols) [all...] |
onyx_if.c | 4342 int mb_col; local 4366 int mb_col; local [all...] |
firstpass.c | 509 int mb_row, mb_col; local 598 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) 602 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); 607 xd->left_available = (mb_col != 0); 632 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16)); 633 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); 756 if (mb_col < cm->mb_cols / 2 [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_firstpass.c | 457 static BLOCK_SIZE get_bsize(const VP9_COMMON *cm, int mb_row, int mb_col) { 458 if (2 * mb_col + 1 < cm->mi_cols) { 496 int mb_row, mb_col; local 649 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) { 651 const int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); 652 const BLOCK_SIZE bsize = get_bsize(cm, mb_row, mb_col); 657 const int mb_index = mb_row * cm->mb_cols + mb_col; [all...] |
vp9_encodeframe.c | 2448 int mb_col = mi_col >> 1; local 2529 int mb_col = mi_col >> 1; local [all...] |