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

  /external/libvpx/libvpx/vp9/common/
vp9_mvref_common.h 279 int mi_rows, const POSITION *mi_pos) {
280 return !(mi_row + mi_pos->row < 0 ||
281 mi_col + mi_pos->col < tile->mi_col_start ||
282 mi_row + mi_pos->row >= mi_rows ||
283 mi_col + mi_pos->col >= tile->mi_col_end);
  /external/libaom/libaom/av1/common/
mvref_common.h 76 const POSITION *mi_pos) {
77 return !(mi_row + mi_pos->row < tile->mi_row_start ||
78 mi_col + mi_pos->col < tile->mi_col_start ||
79 mi_row + mi_pos->row >= tile->mi_row_end ||
80 mi_col + mi_pos->col >= tile->mi_col_end);
mvref_common.c 247 POSITION mi_pos; local
249 mi_pos.row = row_offset;
250 mi_pos.col = col_offset;
252 if (is_inside(tile, mi_col, mi_row, &mi_pos)) {
254 xd->mi[mi_pos.row * xd->mi_stride + mi_pos.col];
259 cm->global_motion, mi_pos.col, 2 * len);
332 POSITION mi_pos; local
336 mi_pos.row = (mi_row & 0x01) ? blk_row : blk_row + 1;
337 mi_pos.col = (mi_col & 0x01) ? blk_col : blk_col + 1
    [all...]
  /external/webrtc/webrtc/p2p/base/
stun.cc 174 size_t mi_pos = current_pos; local
177 if (size > mi_pos + kStunAttributeHeaderSize + kStunMessageIntegritySize) {
181 (mi_pos + kStunAttributeHeaderSize + kStunMessageIntegritySize);
196 temp_data.get(), mi_pos,

Completed in 916 milliseconds