/external/libvpx/libvpx/vp9/encoder/ |
vp9_encoder.h | 587 static INLINE int get_token_alloc(int mb_rows, int mb_cols) { 593 return mb_rows * mb_cols * (16 * 16 * 3 + 4);
|
vp9_firstpass.c | 649 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) { 657 const int mb_index = mb_row * cm->mb_cols + mb_col; 753 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + BORDER_MV_PIXELS_B16; [all...] |
vp9_encodeframe.c | [all...] |
vp9_encoder.c | 166 if (rows == cpi->common.mb_rows && cols == cpi->common.mb_cols) { 195 if (rows == cpi->common.mb_rows && cols == cpi->common.mb_cols && 702 unsigned int tokens = get_token_alloc(cm->mb_rows, cm->mb_cols); [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
onyxd_if.c | 394 for (col = 0; col < pbi->common.mb_cols; ++col) 469 for (mb_col = 0; mb_col < oci->mb_cols; mb_col++,mi++)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_onyxc_int.h | 128 int mb_cols, mi_cols; member in struct:VP9Common
|
/external/libvpx/libvpx/vp8/encoder/ |
bitstream.c | 541 int total_mbs = pc->mb_rows * pc->mb_cols; 567 while (++mb_col < pc->mb_cols) 580 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; 732 int total_mbs = c->mb_rows * c->mb_cols; 750 while (++mb_col < c->mb_cols) [all...] |
firstpass.c | 599 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) 634 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); 757 if (mb_col < cm->mb_cols / 2) 764 else if (mb_col > cm->mb_cols / 2) 787 x->src.y_buffer += 16 * x->src.y_stride - 16 * cm->mb_cols; 788 x->src.u_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols; 789 x->src.v_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols; [all...] |
ratectrl.c | 453 int pct_gf_active = (100 * cpi->gf_active_count) / (cpi->common.mb_rows * cpi->common.mb_cols); [all...] |
pickinter.c | 94 int index = mb_row * cpi->common.mb_cols + mb_col; [all...] |
rdopt.c | [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
bitstream.c | 540 int total_mbs = pc->mb_rows * pc->mb_cols; 566 while (++mb_col < pc->mb_cols) 579 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; 731 int total_mbs = c->mb_rows * c->mb_cols; 749 while (++mb_col < c->mb_cols) [all...] |
firstpass.c | 598 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) 633 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); 756 if (mb_col < cm->mb_cols / 2) 763 else if (mb_col > cm->mb_cols / 2) 786 x->src.y_buffer += 16 * x->src.y_stride - 16 * cm->mb_cols; 787 x->src.u_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols; 788 x->src.v_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols; [all...] |
ratectrl.c | 451 int pct_gf_active = (100 * cpi->gf_active_count) / (cpi->common.mb_rows * cpi->common.mb_cols); [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_onyxc_int.h | 180 int mb_cols, mi_cols; member in struct:VP9Common
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_firstpass.c | 580 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) { 626 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + BORDER_MV_PIXELS_B16; 751 if (mb_col < cm->mb_cols / 2) { 756 } else if (mb_col > cm->mb_cols / 2) { 779 x->plane[0].src.buf += 16 * x->plane[0].src.stride - 16 * cm->mb_cols; 781 uv_mb_height * cm->mb_cols; 783 uv_mb_height * cm->mb_cols; [all...] |
vp9_encodeframe.c | 175 const int mb_cols = cm->mb_cols; local 182 return cpi->active_map[mb_row * mb_cols + mb_col]; 188 if (row >= mb_rows || col >= mb_cols) 190 if (cpi->active_map[row * mb_cols + col]) 217 const int idx_map = mb_row * cm->mb_cols + mb_col; 271 const int mb_cols = (tile->mi_col_end - tile->mi_col_start) >> 1; local 273 cpi->seg0_progress = ((y * mb_cols + x * 4 + p32 + p16 + tile_progress) 720 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) { 778 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) [all...] |
vp9_onyx_if.c | 609 unsigned int tokens = get_token_alloc(cm->mb_rows, cm->mb_cols); 617 cm->mb_rows * cm->mb_cols)); 622 cm->mb_rows * cm->mb_cols)); [all...] |
/external/libvpx/libvpx/vp8/ |
vp8_dx_iface.c | 456 (pc->mb_cols + 1) * (pc->mb_rows + 1),
|
vp8_cx_iface.c | 621 int mb_cols = ((cfg->g_h + 15) >>4); local 629 shared_mem_loc->mb_info = calloc(mb_rows*mb_cols, sizeof(LOWER_RES_MB_INFO)); [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
vp8_cx_iface.c | 552 int mb_cols = ((cfg->g_h + 15) >>4); local 560 shared_mem_loc->mb_info = calloc(mb_rows*mb_cols, sizeof(LOWER_RES_MB_INFO)); [all...] |
vp8_dx_iface.c | 524 (pc->mb_cols + 1) * (pc->mb_rows + 1),
|