• 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:fy

127                     int fy = c->direct_basis_mv[i][1] + hy;
129 int by = hy ? fy - c->co_located_mv[i][1] : c->co_located_mv[i][1]*(time_pb - time_pp)/time_pp + ((i>>1)<<(qpel+4));
130 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1));
135 c->qpel_put[1][fxy](dst, ref[0] + (fx>>2) + (fy>>2)*stride, stride);
138 c->hpel_put[1][fxy](dst, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 8);
144 int fy = c->direct_basis_mv[0][1] + hy;
146 int by = hy ? fy - c->co_located_mv[0][1] : (c->co_located_mv[0][1]*(time_pb - time_pp)/time_pp);
147 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1));
151 c->qpel_put[1][fxy](c->temp , ref[0] + (fx>>2) + (fy>>2)*stride , stride);
152 c->qpel_put[1][fxy](c->temp + 8 , ref[0] + (fx>>2) + (fy>>2)*stride + 8 , stride);
153 c->qpel_put[1][fxy](c->temp + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8*stride, stride);
154 c->qpel_put[1][fxy](c->temp + 8 + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8 + 8*stride, stride);
161 assert((fy>>1) + 16*s->mb_y >= -16);
163 assert((fy>>1) + 16*s->mb_y <= s->height);
169 c->hpel_put[0][fxy](c->temp, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 16);
1426 #define HASH(fx,fy,bx,by) ((fx)+17*(fy)+63*(bx)+117*(by))
1427 #define HASH8(fx,fy,bx,by) ((uint8_t)HASH(fx,fy,bx,by))
1479 #define CHECK_BIDIR(fx,fy,bx,by)\
1480 if( !map[(hashidx+HASH(fx,fy,bx,by))&255]\
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)\
1482 &&(fx>=0 || motion_fx+fx>=xmin) && (fy>=0 || motion_fy+fy>=ymin) && (bx>=0 || motion_bx+bx>=xmin) && (by>=0 || motion_by+by>=ymin)){\
1484 map[(hashidx+HASH(fx,fy,bx,by))&255] = 1;\
1485 score= check_bidir_mv(s, motion_fx+fx, motion_fy+fy, motion_bx+bx, motion_by+by, pred_fx, pred_fy, pred_bx, pred_by, 0, 16);\
1487 hashidx += HASH(fx,fy,bx,by);\
1490 motion_fy+=fy;\
1512 int fy= motion_fy+vect[i][1];
1517 int b= (ymax - FFMAX(fy,by))|(FFMIN(fy,by) - ymin);
1524 score= check_bidir_mv(s, fx, fy, bx, by, pred_fx, pred_fy, pred_bx, pred_by, 0, 16);
1529 motion_fy=fy;
1536 int b= FFMIN(ymax - FFMAX(fy,by), FFMIN(fy,by) - ymin);