Lines Matching refs:xmin

117         av_assert2(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1));
118 if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){
422 if (mx > xmin && mx < xmax &&
536 c->xmin = - x - 16;
542 c->xmin = (x > 15) ? - 15 : 0;
547 c->xmin = - x;
555 c->xmin = FFMAX(c->xmin,-range);
616 if (P_TOPRIGHT[0] < c->xmin * (1 << shift)) P_TOPRIGHT[0] = c->xmin * (1 << shift);
790 if (P_TOPRIGHT[0] < c->xmin * (1 << 1)) P_TOPRIGHT[0] = c->xmin * (1 << 1);
941 if (P_TOPRIGHT[0] < (c->xmin * (1 << shift)))
942 P_TOPRIGHT[0] = c->xmin * (1 << shift);
1084 if(P_LEFT[0] < (c->xmin<<shift)) P_LEFT[0] = (c->xmin<<shift);
1148 if (P_TOPRIGHT[0] < c->xmin * (1 << shift)) P_TOPRIGHT[0] = c->xmin * (1 << shift);
1260 const int xmin= c->xmin * (1 << shift);
1319 &&(fx>=0 || motion_fx+fx>=xmin) && (fy>=0 || motion_fy+fy>=ymin) && (bx>=0 || motion_bx+bx>=xmin) && (by>=0 || motion_by+by>=ymin)){\
1353 int a= (xmax - FFMAX(fx,bx))|(FFMIN(fx,bx) - xmin);
1372 int a= FFMIN(xmax - FFMAX(fx,bx), FFMIN(fx,bx) - xmin);
1400 int mx, my, xmin, xmax, ymin, ymax;
1404 ymin= xmin=(-32)>>shift;
1429 xmin= FFMAX(xmin, - 16 - min);
1441 av_assert2(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16);
1443 if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){
1450 c->xmin= xmin;
1459 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin * (1 << shift), xmax << shift);
1464 P_TOP[0] = av_clip(mv_table[mot_xy - mot_stride ][0], xmin * (1 << shift), xmax << shift);
1466 P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1][0], xmin * (1 << shift), xmax << shift);