• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:xmax

118         assert(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1));
119 if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){
424 if (mx > xmin && mx < xmax &&
539 c->xmax = - x + s->mb_width *16;
545 c->xmax = (x < s->mb_width * 16 - 16) ? 15 : 0;
550 c->xmax = - x + s->mb_width *16 - 16;
555 c->xmax = FFMIN(c->xmax, range);
597 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
610 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
760 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1);
772 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1);
848 if(mv[0] > s->me.xmax) mv[0] = s->me.xmax;
1057 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
1246 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
1297 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
1424 const int xmax= c->xmax<<shift;
1481 &&(fx<=0 || motion_fx+fx<=xmax) && (fy<=0 || motion_fy+fy<=ymax) && (bx<=0 || motion_bx+bx<=xmax) && (by<=0 || motion_by+by<=ymax)\
1516 int a= (xmax - FFMAX(fx,bx))|(FFMIN(fx,bx) - xmin);
1535 int a= FFMIN(xmax - FFMAX(fx,bx), FFMIN(fx,bx) - xmin);
1563 int mx, my, xmin, xmax, ymin, ymax;
1568 ymax= xmax= 31>>shift;
1591 xmax= FFMIN(xmax, s->width - max);
1604 assert(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16);
1606 if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){
1615 c->xmax= xmax;
1622 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift);
1627 P_TOP[0] = av_clip(mv_table[mot_xy - mot_stride ][0], xmin<<shift, xmax<<shift);
1629 P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1 ][0], xmin<<shift, xmax<<shift);