Lines Matching defs:motion_y
42 int src_x, src_y, motion_x, motion_y;
47 motion_y = s->sprite_offset[0][1];
49 src_y = s->mb_y * 16 + (motion_y >> (s->sprite_warping_accuracy + 1));
51 motion_y *= 1 << (3 - s->sprite_warping_accuracy);
57 motion_y = 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);
94 motion_y = s->sprite_offset[1][1];
96 src_y = s->mb_y * 8 + (motion_y >> (s->sprite_warping_accuracy + 1));
98 motion_y *= 1 << (3 - s->sprite_warping_accuracy);
104 motion_y = 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)
202 src_y += motion_y >> 1;
210 dxy |= (motion_y & 1) << 1;
214 (unsigned)src_y >= FFMAX(s->v_edge_pos - (motion_y & 1) - 7, 0)) {
238 int motion_y,
254 dxy = ((motion_y & 1) << 1) | (motion_x & 1);
256 src_y = (mb_y << (4 - block_y_half)) + (motion_y >> 1);
261 my = motion_y >> 1;
266 uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1);
273 my = motion_y / 4;
280 my = motion_y / 2;
288 uvdxy = ((motion_y & 1) << 1) | (mx & 1);
305 (unsigned)src_y >= FFMAX( v_edge_pos - (motion_y & 1) - h + 1, 0)) {
374 int motion_x, int motion_y, int h, int is_16x8, int mb_y)
380 motion_x, motion_y, h, 1, is_16x8, mb_y);
385 motion_x, motion_y, h, 0, is_16x8, mb_y);
393 int motion_x, int motion_y, int h, int mb_y)
399 motion_x, motion_y, h, 1, 0, mb_y);
404 motion_x, motion_y, h, 0, 0, mb_y);
495 int motion_x, int motion_y, int h)
501 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
504 src_y = s->mb_y * (16 >> field_based) + (motion_y >> 2);
512 my = motion_y >> 1;
516 my = (motion_y >> 1) + rtab[motion_y & 7];
519 my = (motion_y >> 1) | (motion_y & 1);
522 my = motion_y / 2;
539 (unsigned)src_y >= FFMAX( v_edge_pos - (motion_y & 3) - h + 1, 0)) {
767 int motion_y = s->mv[dir][i][1];
769 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
771 src_y = mb_y * 16 + (motion_y >> 2) + (i >> 1) * 8;
783 (unsigned)src_y >= FFMAX(s->v_edge_pos - (motion_y & 3) - 7, 0)) {