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

  /external/libvpx/vp8/decoder/
decodemv.c 301 int mb_to_bottom_edge; local
304 mb_to_bottom_edge = pbi->mb.mb_to_bottom_edge;
306 mb_to_bottom_edge += RIGHT_BOTTOM_MARGIN;
400 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0;
432 mv->row = (mv->row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->row;
441 mv->row = (mv->row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->row;
461 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0
532 int mb_to_bottom_edge; local
    [all...]
decodframe.c 147 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
148 mv->row = xd->mb_to_bottom_edge + (16 << 3);
158 mv->row = (2*mv->row > xd->mb_to_bottom_edge + (18 << 3)) ? (xd->mb_to_bottom_edge + (16 << 3)) >> 1 : mv->row;
346 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
threading.c 206 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
615 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
  /external/libvpx/vp8/common/
blockd.h 274 int mb_to_bottom_edge; member in struct:__anon5217
findnearmv.c 50 else if (mv->row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
51 mv->row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN;
  /external/libvpx/vp8/encoder/
ethreading.c 101 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3;
317 zd->mb_to_bottom_edge = xd->mb_to_bottom_edge;
rdopt.c     [all...]
bitstream.c 936 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
    [all...]
encodeframe.c 411 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3;
    [all...]

Completed in 189 milliseconds