Lines Matching refs:avmv
91 if(s->avmv && mb_y < mb_h && plane_index == 0) in predict_slice_buffered()
93 AVMotionVector *avmv = s->avmv + s->avmv_index; in predict_slice_buffered() local
103 avmv->w = block_w; in predict_slice_buffered()
104 avmv->h = block_h; in predict_slice_buffered()
105 avmv->dst_x = block_w*mb_x - block_w/2; in predict_slice_buffered()
106 avmv->dst_y = block_h*mb_y - block_h/2; in predict_slice_buffered()
107 avmv->motion_scale = 8; in predict_slice_buffered()
108 avmv->motion_x = bn->mx * s->mv_scale; in predict_slice_buffered()
109 avmv->motion_y = bn->my * s->mv_scale; in predict_slice_buffered()
110 avmv->src_x = avmv->dst_x + avmv->motion_x / 8; in predict_slice_buffered()
111 avmv->src_y = avmv->dst_y + avmv->motion_y / 8; in predict_slice_buffered()
112 avmv->source= -1 - bn->ref; in predict_slice_buffered()
113 avmv->flags = 0; in predict_slice_buffered()
507 av_assert0(!s->avmv); in decode_frame()
509 …s->avmv = av_malloc_array(s->b_width * s->b_height, sizeof(AVMotionVector) << (s->block_max_depth*… in decode_frame()
635 memcpy(sd->data, s->avmv, s->avmv_index * sizeof(AVMotionVector)); in decode_frame()
638 av_freep(&s->avmv); in decode_frame()