Searched refs:vp4_get_mv (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | vp3.c | 891 static int vp4_get_mv(Vp3DecodeContext *s, GetBitContext *gb, int axis, int last_motion) in vp4_get_mv() function 944 last_gold_motion_x = motion_x[0] = vp4_get_mv(s, gb, 0, last_gold_motion_x); in unpack_vectors() 945 last_gold_motion_y = motion_y[0] = vp4_get_mv(s, gb, 1, last_gold_motion_y); in unpack_vectors() 959 motion_x[0] = vp4_get_mv(s, gb, 0, last_motion_x); in unpack_vectors() 960 motion_y[0] = vp4_get_mv(s, gb, 1, last_motion_y); in unpack_vectors() 991 motion_x[k] = vp4_get_mv(s, gb, 0, prior_last_motion_x); in unpack_vectors() 992 motion_y[k] = vp4_get_mv(s, gb, 1, prior_last_motion_y); in unpack_vectors()
|