HomeSort by relevance Sort by last modified time
    Searched refs:mb_cols (Results 26 - 50 of 69) sorted by null

12 3

  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 234 int mb_cols = cpi->common.mb_cols; local
269 for (mb_col = 0; mb_col < mb_cols; mb_col++)
279 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
417 mb_y_offset += 16*(f->y_stride-mb_cols);
418 mb_uv_offset += 8*(f->uv_stride-mb_cols);
encodeframe.c 225 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
287 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
315 x->src.y_buffer += 16 * x->src.y_stride - 16 * cm->mb_cols;
376 int map_index = (mb_row * cpi->common.mb_cols);
386 const int rightmost_col = cm->mb_cols + nsync;
430 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
441 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
447 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16)
649 sizeof(ENTROPY_CONTEXT_PLANES) * cm->mb_cols);
826 tp = cpi->tok + mb_row * (cm->mb_cols * 16 * 24)
    [all...]
onyx_if.c 507 vpx_memcpy(cpi->segmentation_map, segmentation_map, (cpi->common.mb_rows * cpi->common.mb_cols));
539 CHECK_MEM_ERROR(seg_map, vpx_calloc(cpi->common.mb_rows * cpi->common.mb_cols, 1));
575 int mbs_in_frame = cpi->common.mb_rows * cpi->common.mb_cols;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 199 int mb_cols = cpi->common.mb_cols; local
239 for (mb_col = 0; mb_col < mb_cols; mb_col++) {
248 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
362 mb_y_offset += 16 * (f->y_stride - mb_cols);
363 mb_uv_offset += mb_uv_height * (f->uv_stride - mb_cols);
vp9_onyx_int.h 599 static INLINE int get_token_alloc(int mb_rows, int mb_cols) {
606 return mb_rows * mb_cols * (16 * 16 * 3 + 4);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
encodeframe.c 225 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
287 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
315 x->src.y_buffer += 16 * x->src.y_stride - 16 * cm->mb_cols;
376 int map_index = (mb_row * cpi->common.mb_cols);
386 const int rightmost_col = cm->mb_cols + nsync;
430 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
441 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
447 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16)
662 sizeof(ENTROPY_CONTEXT_PLANES) * cm->mb_cols);
839 tp = cpi->tok + mb_row * (cm->mb_cols * 16 * 24)
    [all...]
onyx_if.c 510 vpx_memcpy(cpi->segmentation_map, segmentation_map, (cpi->common.mb_rows * cpi->common.mb_cols));
542 CHECK_MEM_ERROR(seg_map, vpx_calloc(cpi->common.mb_rows * cpi->common.mb_cols, 1));
578 int mbs_in_frame = cpi->common.mb_rows * cpi->common.mb_cols;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
onyxc_int.h 104 int mb_cols; member in struct:VP8Common
postproc.c 339 unsigned char *uvlimits = cm->pp_limits_buffer + 16 * cm->mb_cols;
349 for (mbc = 0; mbc < cm->mb_cols; mbc++)
400 int mb_cols = cm->mb_cols; local
406 vpx_memset(limits, (unsigned char)ppl, 16 * mb_cols);
848 oci->mb_cols, oci->mb_rows);
858 int mb_cols = post->y_width >> 4; local
867 for (j = 0; j < mb_cols; j++)
890 int mb_cols = post->y_width >> 4; local
899 for (j = 0; j < mb_cols; j++
    [all...]
  /external/libvpx/libvpx/vp8/common/
onyxc_int.h 104 int mb_cols; member in struct:VP8Common
postproc.c 338 unsigned char *uvlimits = cm->pp_limits_buffer + 16 * cm->mb_cols;
348 for (mbc = 0; mbc < cm->mb_cols; mbc++)
397 int mb_cols = source->y_height >> 4; local
404 vpx_memset(limits, (unsigned char)ppl, 16 * mb_cols);
844 oci->mb_cols, oci->mb_rows);
854 int mb_cols = post->y_width >> 4; local
863 for (j = 0; j < mb_cols; j++)
886 int mb_cols = post->y_width >> 4; local
895 for (j = 0; j < mb_cols; j++)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_alloccommon.c 39 cm->mb_cols = (cm->mi_cols + 1) >> 1;
41 cm->MBs = cm->mb_rows * cm->mb_cols;
vp9_onyxc_int.h 128 int mb_cols, mi_cols; member in struct:VP9Common
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_temporal_filter.c 203 int mb_cols = (frames[alt_ref_index]->y_crop_width + 15) >> 4; local
239 for (mb_col = 0; mb_col < mb_cols; mb_col++) {
247 cpi->mb.mv_col_max = ((mb_cols - 1 - mb_col) * 16)
353 mb_y_offset += 16 * (f->y_stride - mb_cols);
354 mb_uv_offset += mb_uv_height * f->uv_stride - mb_uv_width * mb_cols;
vp9_encoder.h 476 static INLINE int get_token_alloc(int mb_rows, int mb_cols) {
482 return mb_rows * mb_cols * (16 * 16 * 3 + 4);
  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 36 cm->mb_cols = (cm->mi_cols + 1) >> 1;
38 cm->MBs = cm->mb_rows * cm->mb_cols;
vp9_postproc.c 656 cm->mb_cols, cm->mb_rows);
664 int mb_cols = ppbuf->y_width >> 4;
672 for (j = 0; j < mb_cols; j++) {
691 int mb_cols = ppbuf->y_width >> 4;
699 for (j = 0; j < mb_cols; j++) {
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
threading.c 303 const int first_row_no_sync_above = pc->mb_cols + nsync;
405 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
423 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
449 pc->mb_rows, pc->mb_cols,
506 if(mb_col != pc->mb_cols-1)
decodemv.c 628 mb_to_right_edge_start = ((pbi->common.mb_cols - 1) * 16) << 3;
637 while (++mb_col < pbi->common.mb_cols)
640 int mb_num = mb_row * pbi->common.mb_cols + mb_col;
decodeframe.c 596 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
603 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
625 pc->mb_rows, pc->mb_cols,
707 lf_mic += pc->mb_cols;
    [all...]
onyxd_if.c 374 for (col = 0; col < pbi->common.mb_cols; ++col)
441 for (mb_col = 0; mb_col < oci->mb_cols; mb_col++,mi++)
  /external/libvpx/libvpx/vp8/decoder/
threading.c 303 const int first_row_no_sync_above = pc->mb_cols + nsync;
405 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
423 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
449 pc->mb_rows, pc->mb_cols,
506 if(mb_col != pc->mb_cols-1)
decodemv.c 628 mb_to_right_edge_start = ((pbi->common.mb_cols - 1) * 16) << 3;
637 while (++mb_col < pbi->common.mb_cols)
640 int mb_num = mb_row * pbi->common.mb_cols + mb_col;
decodeframe.c 595 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
602 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
624 pc->mb_rows, pc->mb_cols,
698 lf_mic += pc->mb_cols;
    [all...]
onyxd_if.c 392 for (col = 0; col < pbi->common.mb_cols; ++col)
467 for (mb_col = 0; mb_col < oci->mb_cols; mb_col++,mi++)

Completed in 279 milliseconds

12 3