• 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 defs:motion_x

62     int motion_x, motion_y;
65 motion_x= s->sprite_offset[0][0];
67 src_x = s->mb_x * 16 + (motion_x >> (s->sprite_warping_accuracy+1));
69 motion_x<<=(3-s->sprite_warping_accuracy);
73 motion_x =0;
91 if((motion_x|motion_y)&7){
92 s->dsp.gmc1(dest_y , ptr , linesize, 16, motion_x&15, motion_y&15, 128 - s->no_rounding);
93 s->dsp.gmc1(dest_y+8, ptr+8, linesize, 16, motion_x&15, motion_y&15, 128 - s->no_rounding);
97 dxy= ((motion_x>>3)&1) | ((motion_y>>2)&2);
107 motion_x= s->sprite_offset[1][0];
109 src_x = s->mb_x * 8 + (motion_x >> (s->sprite_warping_accuracy+1));
111 motion_x<<=(3-s->sprite_warping_accuracy);
115 motion_x =0;
130 s->dsp.gmc1(dest_cb, ptr, uvlinesize, 8, motion_x&15, motion_y&15, 128 - s->no_rounding);
137 s->dsp.gmc1(dest_cr, ptr, uvlinesize, 8, motion_x&15, motion_y&15, 128 - s->no_rounding);
205 int motion_x, int motion_y)
210 dxy = ((motion_y & 1) << 1) | (motion_x & 1);
211 src_x += motion_x >> 1;
224 if( (unsigned)src_x > FFMAX(h_edge_pos - (motion_x&1) - w, 0)
243 int motion_x, int motion_y, int h, int is_mpeg12, int mb_y)
252 motion_x>>=1;
261 dxy = ((motion_y & 1) << 1) | (motion_x & 1);
262 src_x = s->mb_x* 16 + (motion_x >> 1);
267 mx = (motion_x>>1)|(motion_x&1);
273 uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1);
278 mx = motion_x / 4;
285 mx = motion_x / 2;
293 mx = motion_x / 2;
310 if( (unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x&1) - 16, 0)
371 int motion_x, int motion_y, int h, int mb_y)
377 motion_x, motion_y, h, 1, mb_y);
382 motion_x, motion_y, h, 0, mb_y);
472 int motion_x, int motion_y, int h)
477 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
478 src_x = s->mb_x * 16 + (motion_x >> 2);
486 mx= motion_x/2;
490 mx= (motion_x>>1) + rtab[motion_x&7];
493 mx= (motion_x>>1)|(motion_x&1);
496 mx= motion_x/2;
513 if( (unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x&3) - 16, 0)
643 int dxy, mx, my, src_x, src_y, motion_x, motion_y;
747 motion_x = s->mv[dir][i][0];
750 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
751 src_x = mb_x * 16 + (motion_x >> 2) + (i & 1) * 8;
764 if( (unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x&3) - 8, 0)