Lines Matching defs:mot_stride
593 const int mot_stride = s->b8_stride;
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];
752 const int mot_stride= s->mb_stride;
753 const int xy= s->mb_x + s->mb_y*mot_stride;
785 P_TOP[0] = mv_table[xy - mot_stride][0];
786 P_TOP[1] = mv_table[xy - mot_stride][1];
787 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0];
788 P_TOPRIGHT[1] = mv_table[xy - mot_stride + 1][1];
925 const int mot_stride = s->b8_stride;
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];
1123 const int mot_stride = s->mb_stride;
1124 const int mot_xy = mb_y*mot_stride + mb_x;
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];
1246 const int mot_stride = s->mb_stride;
1247 const int xy = mb_y *mot_stride + mb_x;
1394 const int mot_stride = s->mb_stride;
1395 const int mot_xy = mb_y*mot_stride + mb_x;
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);