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

  /external/libaom/libaom/av1/common/
entropymv.h 75 #define MV_UPP (1 << MV_IN_USE_BITS)
mvref_common.c 34 const int clamp_max = MV_UPP - 1;
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.h 80 #define MV_UPP ((1 << MV_IN_USE_BITS) - 1)
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 390 return mv->row > MV_LOW && mv->row < MV_UPP && mv->col > MV_LOW &&
391 mv->col < MV_UPP;
  /external/libaom/libaom/av1/encoder/
mcomp.c 51 col_max = AOMMIN(col_max, (MV_UPP >> 3) - 1);
52 row_max = AOMMIN(row_max, (MV_UPP >> 3) - 1);
72 *col_max = AOMMIN(MV_UPP - 1, maxc);
74 *row_max = AOMMIN(MV_UPP - 1, maxr);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 45 col_max = VPXMIN(col_max, (MV_UPP >> 3) - 1);
46 row_max = VPXMIN(row_max, (MV_UPP >> 3) - 1);
69 subpel_mv_limits->col_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->col_max);
71 subpel_mv_limits->row_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->row_max);
    [all...]
  /external/libaom/libaom/av1/decoder/
decodemv.c     [all...]

Completed in 1764 milliseconds