• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:xmax

116         av_assert2(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1));
117 if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){
416 if (mx > xmin && mx < xmax &&
532 c->xmax = - x + s->width;
538 c->xmax = (x < s->mb_width * 16 - 16) ? 15 : 0;
543 c->xmax = - x + s->mb_width *16 - 16;
550 c->xmax = FFMIN(c->xmax, range);
591 c->xmax = - 16*s->mb_x + s->width - 8*(block &1);
598 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
611 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
628 if(P[i][0] > (c->xmax<<shift)) P[i][0]= (c->xmax<<shift);
770 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1);
782 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1);
930 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
1117 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
1166 if (P_LEFT[0] > (c->xmax << shift)) P_LEFT[0] = (c->xmax << shift);
1291 const int xmax= c->xmax<<shift;
1347 &&(fx<=0 || motion_fx+fx<=xmax) && (fy<=0 || motion_fy+fy<=ymax) && (bx<=0 || motion_bx+bx<=xmax) && (by<=0 || motion_by+by<=ymax)\
1382 int a= (xmax - FFMAX(fx,bx))|(FFMIN(fx,bx) - xmin);
1401 int a= FFMIN(xmax - FFMAX(fx,bx), FFMIN(fx,bx) - xmin);
1429 int mx, my, xmin, xmax, ymin, ymax;
1434 ymax= xmax= 31>>shift;
1457 xmax= FFMIN(xmax, s->width - max);
1470 av_assert2(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16);
1472 if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){
1481 c->xmax= xmax;
1488 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift);
1493 P_TOP[0] = av_clip(mv_table[mot_xy - mot_stride ][0], xmin<<shift, xmax<<shift);
1495 P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1 ][0], xmin<<shift, xmax<<shift);