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

42     int src_x, src_y, motion_x, motion_y;
46 motion_x = s->sprite_offset[0][0];
48 src_x = s->mb_x * 16 + (motion_x >> (s->sprite_warping_accuracy + 1));
50 motion_x <<= (3 - s->sprite_warping_accuracy);
54 motion_x = 0;
74 if ((motion_x | motion_y) & 7) {
76 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
78 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
82 dxy = ((motion_x >> 3) & 1) | ((motion_y >> 2) & 2);
93 motion_x = s->sprite_offset[1][0];
95 src_x = s->mb_x * 8 + (motion_x >> (s->sprite_warping_accuracy + 1));
97 motion_x <<= (3 - s->sprite_warping_accuracy);
101 motion_x = 0;
119 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
131 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
196 int motion_x, int motion_y)
201 src_x += motion_x >> 1;
207 dxy |= motion_x & 1;
213 if ((unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x & 1) - 8, 0) ||
237 int motion_x,
250 motion_x >>= 1;
259 dxy = ((motion_y & 1) << 1) | (motion_x & 1);
260 src_x = s->mb_x * 16 + (motion_x >> 1);
265 mx = (motion_x >> 1) | (motion_x & 1);
271 uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1);
277 mx = motion_x / 4;
284 mx = motion_x / 2;
292 mx = motion_x / 2;
309 if ((unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x & 1) - 16, 0) ||
375 int motion_x, int motion_y, int h, int mb_y)
381 motion_x, motion_y, h, 1, mb_y);
386 motion_x, motion_y, h, 0, mb_y);
394 int motion_x, int motion_y, int h, int mb_y)
400 motion_x, motion_y, h, 1, mb_y);
405 motion_x, motion_y, h, 0, mb_y);
496 int motion_x, int motion_y, int h)
502 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
504 src_x = s->mb_x * 16 + (motion_x >> 2);
512 mx = motion_x / 2;
516 mx = (motion_x >> 1) + rtab[motion_x & 7];
519 mx = (motion_x >> 1) | (motion_x & 1);
522 mx = motion_x / 2;
539 if ((unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x & 3) - 16, 0) ||
765 int motion_x = s->mv[dir][i][0];
768 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
769 src_x = mb_x * 16 + (motion_x >> 2) + (i & 1) * 8;
781 if ((unsigned)src_x > FFMAX(s->h_edge_pos - (motion_x & 3) - 8, 0) ||