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

  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 97 int mb_cols = (src->y_width + 15) >> 4; local
114 for (; col < mb_cols; ++col) {
119 if (col == mb_cols) break;
124 for (; active_end < mb_cols; ++active_end) {
136 active_map += mb_cols;
temporal_filter.c 193 int mb_cols = cpi->common.mb_cols; local
226 for (mb_col = 0; mb_col < mb_cols; ++mb_col) {
235 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16) + (16 - 5);
337 mb_y_offset += 16 * (f->y_stride - mb_cols);
338 mb_uv_offset += 8 * (f->uv_stride - mb_cols);
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 95 int mb_cols = (src->y_width + 15) >> 4; local
132 for (; col < mb_cols; ++col) {
137 if (col == mb_cols) break;
142 for (; active_end < mb_cols; ++active_end) {
154 active_map += mb_cols;
vp9_temporal_filter.c 297 int mb_cols = (frames[alt_ref_index]->y_crop_width + 15) >> 4; local
351 ((mb_cols - 1 - mb_col) * 16) + (17 - 2 * VP9_INTERP_EXTEND);
  /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...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 74 unsigned char *uvlimits = cm->pp_limits_buffer + 16 * cm->mb_cols;
82 for (mbc = 0; mbc < cm->mb_cols; ++mbc) {
126 int mb_cols = cm->mb_cols; local
132 memset(limits, (unsigned char)ppl, 16 * mb_cols);
vp8_loopfilter.c 177 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) {
230 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) {
275 int mb_cols = cm->mb_cols; local
297 for (mb_col = 0; mb_col < mb_cols; ++mb_col) {
347 for (mb_col = 0; mb_col < mb_cols; ++mb_col) {
418 for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) {
485 int mb_cols = post->y_width >> 4; local
512 mode_info_context = cm->mi + (post->y_height >> 5) * (mb_cols + 1);
516 for (mb_col = 0; mb_col < mb_cols; ++mb_col)
    [all...]
onyxc_int.h 100 int mb_cols; member in struct:VP8Common
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 256 const int mb_cols = src->y_width / 16; local
258 memset(limits, (unsigned char)ppl, 16 * mb_cols);
vp9_onyxc_int.h 158 int mb_cols, mi_cols; member in struct:VP9Common
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 585 int mb_cols = ((cfg->g_h + 15) >> 4); local
593 calloc(mb_rows * mb_cols, sizeof(LOWER_RES_MB_INFO));
    [all...]

Completed in 175 milliseconds