Lines Matching refs:mot_xy
508 int mot_xy= s->block_index[0];
510 s->current_picture.motion_val[0][mot_xy ][0] = mx;
511 s->current_picture.motion_val[0][mot_xy ][1] = my;
512 s->current_picture.motion_val[0][mot_xy + 1][0] = mx;
513 s->current_picture.motion_val[0][mot_xy + 1][1] = my;
515 mot_xy += s->b8_stride;
516 s->current_picture.motion_val[0][mot_xy ][0] = mx;
517 s->current_picture.motion_val[0][mot_xy ][1] = my;
518 s->current_picture.motion_val[0][mot_xy + 1][0] = mx;
519 s->current_picture.motion_val[0][mot_xy + 1][1] = my;
594 const int mot_xy = s->block_index[block];
601 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0];
602 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1];
611 P_TOP[0] = s->current_picture.motion_val[0][mot_xy - mot_stride ][0];
612 P_TOP[1] = s->current_picture.motion_val[0][mot_xy - mot_stride ][1];
613 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][0];
614 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][1];
926 const int mot_xy = s->block_index[0];
928 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0];
929 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1];
935 P_TOP[0] = s->current_picture.motion_val[0][mot_xy - mot_stride ][0];
936 P_TOP[1] = s->current_picture.motion_val[0][mot_xy - mot_stride ][1];
937 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][0];
938 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][1];
1124 const int mot_xy = mb_y*mot_stride + mb_x;
1136 P_LEFT[0] = mv_table[mot_xy - 1][0];
1137 P_LEFT[1] = mv_table[mot_xy - 1][1];
1143 P_TOP[0] = mv_table[mot_xy - mot_stride ][0];
1144 P_TOP[1] = mv_table[mot_xy - mot_stride ][1];
1145 P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1][0];
1146 P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1][1];
1172 mv_table[mot_xy][0]= mx;
1173 mv_table[mot_xy][1]= my;
1395 const int mot_xy = mb_y*mot_stride + mb_x;
1407 if (IS_8X8(s->next_picture.mb_type[mot_xy])) {
1444 s->b_direct_mv_table[mot_xy][0]= 0;
1445 s->b_direct_mv_table[mot_xy][1]= 0;
1459 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin * (1 << shift), xmax << shift);
1460 P_LEFT[1] = av_clip(mv_table[mot_xy - 1][1], ymin * (1 << shift), ymax << shift);
1464 P_TOP[0] = av_clip(mv_table[mot_xy - mot_stride ][0], xmin * (1 << shift), xmax << shift);
1465 P_TOP[1] = av_clip(mv_table[mot_xy - mot_stride ][1], ymin * (1 << shift), ymax << shift);
1466 P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1][0], xmin * (1 << shift), xmax << shift);
1467 P_TOPRIGHT[1] = av_clip(mv_table[mot_xy - mot_stride + 1][1], ymin * (1 << shift), ymax << shift);
1484 mv_table[mot_xy][0]= mx;
1485 mv_table[mot_xy][1]= my;