HomeSort by relevance Sort by last modified time
    Searched refs:mb_cols (Results 1 - 15 of 15) sorted by null

  /external/libvpx/vp8/encoder/
segmentation.c 26 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++)
ethreading.c 97 tp = cpi->tok + (mb_row * (cm->mb_cols * 16 * 24));
116 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
118 int seg_map_index = (mb_row * cm->mb_cols);
122 while (mb_col > (*last_row_current_mb_col - nsync) && *last_row_current_mb_col != cm->mb_cols - 1)
132 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
138 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16);
261 x->src.y_buffer += 16 * x->src.y_stride * (cpi->encoding_thread_count + 1) - 16 * cm->mb_cols;
262 x->src.u_buffer += 8 * x->src.uv_stride * (cpi->encoding_thread_count + 1) - 8 * cm->mb_cols;
263 x->src.v_buffer += 8 * x->src.uv_stride * (cpi->encoding_thread_count + 1) - 8 * cm->mb_cols;
474 if(th_count > ((cm->mb_cols / cpi->mt_sync_range) - 1)
    [all...]
temporal_filter.c 291 int mb_cols = cpi->common.mb_cols; local
317 for (mb_col = 0; mb_col < mb_cols; mb_col++)
329 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
462 mb_y_offset += 16*(f->y_stride-mb_cols);
463 mb_uv_offset += 8*(f->uv_stride-mb_cols);
encodeframe.c 481 int seg_map_index = (mb_row * cpi->common.mb_cols);
485 const int rightmost_col = cm->mb_cols - 1;
516 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
522 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
527 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16)
544 && (*last_row_current_mb_col) != (cm->mb_cols - 1))
797 vpx_memset(cm->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) * cm->mb_cols);
822 tp = cpi->tok + mb_row * (cm->mb_cols * 16 * 24);
827 x->src.y_buffer += 16 * x->src.y_stride * (cpi->encoding_thread_count + 1) - 16 * cm->mb_cols;
828 x->src.u_buffer += 8 * x->src.uv_stride * (cpi->encoding_thread_count + 1) - 8 * cm->mb_cols;
    [all...]
onyx_if.c 344 vpx_memcpy(cpi->segmentation_map, segmentation_map, (cpi->common.mb_rows * cpi->common.mb_cols));
376 CHECK_MEM_ERROR(seg_map, vpx_calloc(cpi->common.mb_rows * cpi->common.mb_cols, 1));
381 for ( j = 0; j < cpi->common.mb_cols; j++ )
383 //seg_map[(i*cpi->common.mb_cols) + j] = (j % 2) + ((i%2)* 2);
384 //if ( j < cpi->common.mb_cols/2 )
387 if ( (i == 0) || (j == 0) || (i == (cpi->common.mb_rows-1)) || (j == (cpi->common.mb_cols-1)) )
388 seg_map[(i*cpi->common.mb_cols) + j] = 1;
389 //else if ( (i < 2) || (j < 2) || (i > (cpi->common.mb_rows-3)) || (j > (cpi->common.mb_cols-3)) )
390 // seg_map[(i*cpi->common.mb_cols) + j] = 2;
391 //else if ( (i < 5) || (j < 5) || (i > (cpi->common.mb_rows-6)) || (j > (cpi->common.mb_cols-6))
    [all...]
firstpass.c 493 int col_blocks = 4 * cm->mb_cols;
564 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
590 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16);
706 if (mb_col < cm->mb_cols / 2)
713 else if (mb_col > cm->mb_cols / 2)
736 x->src.y_buffer += 16 * x->src.y_stride - 16 * cm->mb_cols;
737 x->src.u_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols;
738 x->src.v_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols;
    [all...]
bitstream.c 913 while (++mb_col < pc->mb_cols)
924 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
1083 while (++mb_col < c->mb_cols)
    [all...]
ratectrl.c 414 int pct_gf_active = (100 * cpi->gf_active_count) / (cpi->common.mb_rows * cpi->common.mb_cols);
    [all...]
  /external/libvpx/vp8/common/
alloccommon.c 100 oci->mb_cols = width >> 4;
101 oci->MBs = oci->mb_rows * oci->mb_cols;
102 oci->mode_info_stride = oci->mb_cols + 1;
103 oci->mip = vpx_calloc((oci->mb_cols + 1) * (oci->mb_rows + 1), sizeof(MODE_INFO));
114 oci->above_context = vpx_calloc(sizeof(ENTROPY_CONTEXT_PLANES) * oci->mb_cols, 1);
122 update_mode_info_border(oci->mi, oci->mb_rows, oci->mb_cols);
onyxc_int.h 116 int mb_cols; member in struct:VP8Common
loopfilter.c 353 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
457 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
509 int mb_cols = post->y_width >> 4; local
521 /*MODE_INFO * this_mb_mode_info = cm->mi + (post->y_height>>5) * (mb_cols + 1);*/ /* Point at base of Mb MODE_INFO list */
522 mbd->mode_info_context = cm->mi + (post->y_height >> 5) * (mb_cols + 1); /* Point at base of Mb MODE_INFO list */
565 for (mb_col = 0; mb_col < mb_cols; mb_col++)
postproc.c 753 oci->mb_cols, oci->mb_rows);
763 int mb_cols = post->y_width >> 4; local
772 for (j = 0; j < mb_cols; j++)
795 int mb_cols = post->y_width >> 4; local
804 for (j = 0; j < mb_cols; j++)
837 int mb_cols = width >> 4; local
    [all...]
  /external/libvpx/vp8/decoder/
threading.c 276 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
280 while (mb_col > (*last_row_current_mb_col - nsync) && *last_row_current_mb_col != pc->mb_cols - 1)
300 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
334 if(mb_col != pc->mb_cols-1)
756 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
759 while (mb_col > (*last_row_current_mb_col - nsync) && *last_row_current_mb_col != pc->mb_cols - 1)
779 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
    [all...]
decodemv.c 311 mb_to_right_edge = ((pbi->common.mb_cols - 1 - mb_col) * 16) << 3;
537 while (++mb_col < pbi->common.mb_cols)
decodframe.c 346 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
362 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
865 vpx_memset(pc->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) * pc->mb_cols);

Completed in 306 milliseconds