Searched refs:mb_cols (Results 1 - 25 of 35) sorted by relevance

12

/external/libvpx/libvpx/vp8/encoder/
H A Dsegmentation.c26 vpx_memset(cpi->gf_active_flags, 1, (cm->mb_rows * cm->mb_cols));
27 cpi->gf_active_count = cm->mb_rows * cm->mb_cols;
35 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
H A Dlookahead.c114 int mb_cols = (src->y_width + 15) >> 4; local
135 for (; col < mb_cols; ++col)
142 if (col == mb_cols)
148 for (; active_end < mb_cols; ++active_end)
164 active_map += mb_cols;
H A Dmr_dissim.c93 for (mb_col = 0; mb_col < cm->mb_cols; mb_col ++)
123 if(mb_col < (cm->mb_cols-1))
139 if(mb_col < (cm->mb_cols-1)
152 if(mb_col < (cm->mb_cols-1))
168 if(mb_col < (cm->mb_cols-1)
H A Dethreading.c89 int map_index = (mb_row * cm->mb_cols);
96 tp = cpi->tok + (mb_row * (cm->mb_cols * 16 * 24));
116 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
138 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
146 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16);
303 x->src.y_buffer += 16 * x->src.y_stride * (cpi->encoding_thread_count + 1) - 16 * cm->mb_cols;
304 x->src.u_buffer += 8 * x->src.uv_stride * (cpi->encoding_thread_count + 1) - 8 * cm->mb_cols;
305 x->src.v_buffer += 8 * x->src.uv_stride * (cpi->encoding_thread_count + 1) - 8 * cm->mb_cols;
309 x->gf_active_ptr += cm->mb_cols * cpi->encoding_thread_count;
532 if(th_count > ((cm->mb_cols / cp
[all...]
H A Dtemporal_filter.c235 int mb_cols = cpi->common.mb_cols; local
270 for (mb_col = 0; mb_col < mb_cols; mb_col++)
280 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
418 mb_y_offset += 16*(f->y_stride-mb_cols);
419 mb_uv_offset += 8*(f->uv_stride-mb_cols);
H A Dencodeframe.c225 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 * 1
[all...]
H A Donyx_if.c510 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;
1163 cpi->mb.pip = vpx_calloc((cpi->common.mb_cols + 1) *
1213 unsigned int tokens = cm->mb_rows * cm->mb_cols * 24 * 16;
1226 cm->mb_rows * cm->mb_cols));
1227 cpi->gf_active_count = cm->mb_rows * cm->mb_cols;
1232 cm->mb_rows * cm->mb_cols));
1236 CHECK_MEM_ERROR(cpi->lfmv, vpx_calloc((cm->mb_rows+2) * (cm->mb_cols+2),
1240 vpx_calloc((cm->mb_rows+2) * (cm->mb_cols
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.h37 int mb_rows, int mb_cols,
H A Derror_concealment.c53 pbi->overlaps = vpx_calloc(pbi->common.mb_rows * pbi->common.mb_cols,
171 int mb_rows, int mb_cols,
190 if (new_row >= ((16*mb_rows) << 3) || new_col >= ((16*mb_cols) << 3))
212 end_col = MIN(mb_cols - overlap_mb_col, 2);
230 mb_overlap = overlap_ul + (overlap_mb_row + rel_row) * mb_cols +
328 int mb_rows, int mb_cols)
337 overlaps, mb_rows, mb_cols,
349 int mb_rows, int mb_cols,
353 vpx_memset(overlaps, 0, sizeof(MB_OVERLAP) * mb_rows * mb_cols);
357 for (mb_col = 0; mb_col < mb_cols;
170 vp8_calculate_overlaps(MB_OVERLAP *overlap_ul, int mb_rows, int mb_cols, union b_mode_info *bmi, int b_row, int b_col) argument
326 calc_prev_mb_overlaps(MB_OVERLAP *overlaps, MODE_INFO *prev_mi, int mb_row, int mb_col, int mb_rows, int mb_cols) argument
347 estimate_missing_mvs(MB_OVERLAP *overlaps, MODE_INFO *mi, MODE_INFO *prev_mi, int mb_rows, int mb_cols, unsigned int first_corrupt) argument
431 find_neighboring_blocks(MODE_INFO *mi, EC_BLOCK *neighbors, int mb_row, int mb_col, int mb_rows, int mb_cols, int mi_stride) argument
558 vp8_interpolate_motion(MACROBLOCKD *mb, int mb_row, int mb_col, int mb_rows, int mb_cols, int mi_stride) argument
[all...]
H A Dthreading.c303 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)
H A Ddecodemv.c628 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;
H A Ddecodeframe.c596 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;
1335 pbi->mvs_corrupt_from_mb < (unsigned int)pc->mb_cols * pc->mb_rows)
1343 vpx_memset(pc->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) * pc->mb_cols);
H A Donyxd_if.c374 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/test/
H A Dset_roi.cc54 cpi.common.mb_cols = 320 >> 4;
55 const int mbs = (cpi.common.mb_rows * cpi.common.mb_cols);
70 cpi.common.mb_cols, delta_q, delta_lf,
138 cpi.common.mb_cols, rand_deltas,
148 cpi.common.mb_cols, delta_q,
160 cpi.common.mb_cols, delta_q,
167 cpi.common.mb_cols, delta_q,
172 cpi.common.mb_cols - 1, delta_q,
/external/libvpx/libvpx/vp8/common/
H A Dalloccommon.c83 oci->mb_cols = width >> 4;
84 oci->MBs = oci->mb_rows * oci->mb_cols;
85 oci->mode_info_stride = oci->mb_cols + 1;
86 oci->mip = vpx_calloc((oci->mb_cols + 1) * (oci->mb_rows + 1), sizeof(MODE_INFO));
96 oci->above_context = vpx_calloc(sizeof(ENTROPY_CONTEXT_PLANES) * oci->mb_cols, 1);
112 * Note: Round up mb_cols to support SIMD reads
114 oci->pp_limits_buffer = vpx_memalign(16, 24 * ((oci->mb_cols + 1) & ~1));
H A Dmfqe.c304 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
376 y_ptr += show->y_stride * 16 - 16 * cm->mb_cols;
377 u_ptr += show->uv_stride * 8 - 8 * cm->mb_cols;
378 v_ptr += show->uv_stride * 8 - 8 * cm->mb_cols;
379 yd_ptr += dest->y_stride * 16 - 16 * cm->mb_cols;
380 ud_ptr += dest->uv_stride * 8 - 8 * cm->mb_cols;
381 vd_ptr += dest->uv_stride * 8 - 8 * cm->mb_cols;
H A Dloopfilter.c209 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
265 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
316 int mb_cols = cm->mb_cols; local
340 for (mb_col = 0; mb_col < mb_cols; mb_col++)
396 for (mb_col = 0; mb_col < mb_cols; mb_col++)
482 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
565 int mb_cols = post->y_width >> 4; local
592 mode_info_context = cm->mi + (post->y_height >> 5) * (mb_cols + 1);
597 for (mb_col = 0; mb_col < mb_cols; mb_co
[all...]
H A Donyxc_int.h104 int mb_cols; member in struct:VP8Common
H A Dpostproc.c339 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);
846 oci->mb_cols, oci->mb_rows);
856 int mb_cols = post->y_width >> 4; local
865 for (j = 0; j < mb_cols; j++)
888 int mb_cols = post->y_width >> 4; local
897 for (j = 0; j < mb_cols;
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.c90 int mb_cols = (src->y_width + 15) >> 4; local
112 for (; col < mb_cols; ++col) {
118 if (col == mb_cols)
124 for (; active_end < mb_cols; ++active_end) {
139 active_map += mb_cols;
H A Dvp9_mbgraph.c260 x->mv_col_max = (cm->mb_cols - 1) * 8 + BORDER_MV_PIXELS_B16;
263 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) {
287 offset += cm->mb_cols;
302 vpx_calloc(cm->mb_rows * cm->mb_cols * sizeof(*arf_not_zz),
314 offset += cm->mb_cols, mb_row++) {
315 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) {
338 if (arf_not_zz[mi_row / 2 * cm->mb_cols + mi_col / 2]) {
387 cm->mb_rows * cm->mb_cols *
H A Dvp9_temporal_filter.c199 int mb_cols = cpi->common.mb_cols; local
235 for (mb_col = 0; mb_col < mb_cols; mb_col++) {
243 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
349 mb_y_offset += 16 * (f->y_stride - mb_cols);
350 mb_uv_offset += mb_uv_height * f->uv_stride - mb_uv_width * mb_cols;
H A Dvp9_encoder.h507 static INLINE int get_token_alloc(int mb_rows, int mb_cols) { argument
513 return mb_rows * mb_cols * (16 * 16 * 3 + 4);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_alloccommon.c39 cm->mb_cols = (cm->mi_cols + 1) >> 1;
41 cm->MBs = cm->mb_rows * cm->mb_cols;
H A Dvp9_onyxc_int.h124 int mb_cols, mi_cols; member in struct:VP9Common

Completed in 788 milliseconds

12