Lines Matching refs:motion
271 MotionXY *motion;
317 s->motion = av_calloc(avctx->width / 16 + 3, sizeof(MotionXY));
318 if (!s->motion)
1082 MotionXY *motion = s->motion;
1089 MotionXY mv = s->motion[0];
1101 motion[offsetm].x = mv.x;
1102 motion[offsetm].y = mv.y;
1251 MotionXY *motion = s->motion;
1253 memset(motion, 0, s->motion_size);
1267 motion[0].x = mid_pred(motion[x / 16 + 1].x, motion[x / 16 + 2].x, motion[x / 16 + 3].x);
1268 motion[0].y = mid_pred(motion[x / 16 + 1].y, motion[x / 16 + 2].y, motion[x / 16 + 3].y);
1269 motion[x / 16 + 2].x = 0;
1270 motion[x / 16 + 2].y = 0;
1333 av_freep(&s->motion);