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

  /external/libvpx/vp8/decoder/
decodemv.c 308 mbmi->need_to_clamp_mvs = 0;
397 mbmi->need_to_clamp_mvs = (mv->col < mb_to_left_edge) ? 1 : 0;
398 mbmi->need_to_clamp_mvs |= (mv->col > mb_to_right_edge) ? 1 : 0;
399 mbmi->need_to_clamp_mvs |= (mv->row < mb_to_top_edge) ? 1 : 0;
400 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0;
458 mbmi->need_to_clamp_mvs = (mv->col < mb_to_left_edge) ? 1 : 0;
459 mbmi->need_to_clamp_mvs |= (mv->col > mb_to_right_edge) ? 1 : 0;
460 mbmi->need_to_clamp_mvs |= (mv->row < mb_to_top_edge) ? 1 : 0;
461 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0;
decodframe.c 183 int i, do_clamp = xd->mode_info_context->mbmi.need_to_clamp_mvs;
  /external/libvpx/vp8/common/
blockd.h 175 unsigned char need_to_clamp_mvs; member in struct:__anon5213

Completed in 137 milliseconds