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

  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 114 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;
temporal_filter.c 237 int mb_cols = cpi->common.mb_cols; local
272 for (mb_col = 0; mb_col < mb_cols; mb_col++)
282 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
420 mb_y_offset += 16*(f->y_stride-mb_cols);
421 mb_uv_offset += 8*(f->uv_stride-mb_cols);
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 102 int mb_cols = (src->y_width + 15) >> 4; local
141 for (; col < mb_cols; ++col) {
147 if (col == mb_cols)
153 for (; active_end < mb_cols; ++active_end) {
168 active_map += mb_cols;
vp9_temporal_filter.c 283 int mb_cols = (frames[alt_ref_index]->y_crop_width + 15) >> 4; local
332 for (mb_col = 0; mb_col < mb_cols; mb_col++) {
340 cpi->td.mb.mv_col_max = ((mb_cols - 1 - mb_col) * 16)
584 mb_y_offset += 16 * (f->y_stride - mb_cols);
585 mb_uv_offset += mb_uv_height * f->uv_stride - mb_uv_width * mb_cols;
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.cc 22 int mb_cols,
27 for (int mb_col = 1; mb_col < mb_cols - 1; ++mb_col) {
28 int mb_index = mb_row * mb_cols + mb_col;
39 metrics_[mb_index + mb_cols].denoise +
40 metrics_[mb_index - mb_cols].denoise <=
48 metrics_[mb_index + mb_cols + 1].denoise +
49 metrics_[mb_index + mb_cols - 1].denoise +
50 metrics_[mb_index - mb_cols + 1].denoise +
51 metrics_[mb_index - mb_cols - 1].denoise +
52 metrics_[mb_index + mb_cols].denoise
80 int mb_cols = width_ >> 4; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
lookahead.c 114 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;
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);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_lookahead.c 99 int mb_cols = (src->y_width + 15) >> 4; local
121 for (; col < mb_cols; ++col) {
127 if (col == mb_cols)
133 for (; active_end < mb_cols; ++active_end) {
148 active_map += mb_cols;
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_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...]
  /external/libvpx/libvpx/vp8/common/
vp8_loopfilter.c 208 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_col++
    [all...]
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 memset(limits, (unsigned char)ppl, 16 * mb_cols);
851 oci->mb_cols, oci->mb_rows);
861 int mb_cols = post->y_width >> 4; local
870 for (j = 0; j < mb_cols; j++)
893 int mb_cols = post->y_width >> 4; local
902 for (j = 0; j < mb_cols; j++
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
loopfilter.c 210 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
267 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
318 int mb_cols = cm->mb_cols; local
342 for (mb_col = 0; mb_col < mb_cols; mb_col++)
398 for (mb_col = 0; mb_col < mb_cols; mb_col++)
484 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
567 int mb_cols = post->y_width >> 4; local
594 mode_info_context = cm->mi + (post->y_height >> 5) * (mb_cols + 1);
599 for (mb_col = 0; mb_col < mb_cols; mb_col++
    [all...]
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...]
  /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...]
  /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/
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...]
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 180 int mb_cols, mi_cols; member in struct:VP9Common

Completed in 444 milliseconds