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

  /external/libvpx/libvpx/vp8/encoder/
segmentation.c 17 int mb_row, mb_col; local
35 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
mr_dissim.c 84 int mb_col; local
92 for (mb_col = 0; mb_col < cm->mb_cols; mb_col ++)
122 if(mb_col < (cm->mb_cols-1))
138 if(mb_col < (cm->mb_cols-1)
151 if(mb_col < (cm->mb_cols-1))
167 if(mb_col < (cm->mb_cols-1)
ethreading.c 84 int mb_col; local
116 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
118 *current_mb_col = mb_col - 1;
120 if ((mb_col & (nsync - 1)) == 0)
122 while (mb_col > (*last_row_current_mb_col - nsync))
137 xd->mb_to_left_edge = -((mb_col * 16) << 3);
138 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
145 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16))
    [all...]
temporal_filter.c 233 int mb_col, mb_row; local
270 for (mb_col = 0; mb_col < mb_cols; mb_col++)
279 cpi->mb.mv_col_min = -((mb_col * 16) + (16 - 5));
280 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
encodeframe.c 116 int mb_row, int mb_col)
122 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row);
207 int mb_row, mb_col; local
225 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
274 int mb_row, mb_col; local
287 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++
371 int mb_col; local
    [all...]
bitstream.c 564 int mb_col = -1; local
566 while (++mb_col < pc->mb_cols)
578 xd->mb_to_left_edge = -((mb_col * 16) << 3);
579 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
747 int mb_col = -1; local
749 while (++mb_col < c->mb_cols)
    [all...]
onyx_if.c 4238 int mb_col; local
4262 int mb_col; local
    [all...]
firstpass.c 508 int mb_row, mb_col; local
597 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
601 int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row);
606 xd->left_available = (mb_col != 0);
631 x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16));
632 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16);
755 if (mb_col < cm->mb_cols / 2
    [all...]
  /external/libvpx/libvpx/vp8/common/
debugmodes.c 20 int mb_col; local
30 for (mb_col = 0; mb_col < cols; mb_col++)
49 for (mb_col = 0; mb_col < cols; mb_col++)
69 for (mb_col = 0; mb_col < cols; mb_col++
    [all...]
loopfilter.c 205 int mb_col; local
211 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
231 if (mb_col > 0)
263 int mb_col; local
267 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
281 if (mb_col > 0
316 int mb_col; local
459 int mb_col; local
566 int mb_col; local
    [all...]
mfqe.c 285 int mb_col; local
304 for (mb_col = 0; mb_col < cm->mb_cols; mb_col++)
  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 509 int mb_row, mb_col; local
513 for (mb_col = 0; mb_col < oci->mb_cols; mb_col++,mi++)
decodemv.c 632 int mb_col = -1; local
637 while (++mb_col < pbi->common.mb_cols)
640 int mb_num = mb_row * pbi->common.mb_cols + mb_col;
error_concealment.c 109 * (mb_row, mb_col) in macroblocks, which are being overlapped by a given
116 int mb_row, int mb_col,
119 /* Find the blocks within this MB (defined by mb_row, mb_col) which are
125 const int rel_ol_blk_col = first_blk_col - mb_col * 4;
138 int end_col = MIN(4 + mb_col * 4 - first_blk_col, 2);
154 if (new_col < (mb_col*16)<<3)
329 int mb_row, int mb_col,
342 4 * mb_col + sub_col);
354 int mb_row, mb_col; local
359 for (mb_col = 0; mb_col < mb_cols; ++mb_col
    [all...]
threading.c 348 int mb_col; local
413 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
415 *current_mb_col = mb_col - 1;
417 if ((mb_col & (nsync - 1)) == 0)
419 while (mb_col > (*last_row_current_mb_col - nsync))
430 xd->mb_to_left_edge = -((mb_col * 16) << 3);
431 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
456 mb_row, mb_col,
    [all...]
decodframe.c 516 int mb_row, mb_col; local
601 for (mb_col = 0; mb_col < pc->mb_cols; mb_col++)
607 xd->mb_to_left_edge = -((mb_col * 16) << 3);
608 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
629 mb_row, mb_col,
    [all...]

Completed in 325 milliseconds