mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-06 06:05:32 +01:00
avutil/motion_vector: export subpel motion information
FATE test changes because of the switch from shift to division.
This commit is contained in:
committed by
Clément Bœsch
parent
c7b9338853
commit
56bdf61baa
@@ -45,6 +45,13 @@ typedef struct AVMotionVector {
|
||||
* Currently unused.
|
||||
*/
|
||||
uint64_t flags;
|
||||
/**
|
||||
* Motion vector
|
||||
* src_x = dst_x + motion_x / motion_scale
|
||||
* src_y = dst_y + motion_y / motion_scale
|
||||
*/
|
||||
int32_t motion_x, motion_y;
|
||||
uint16_t motion_scale;
|
||||
} AVMotionVector;
|
||||
|
||||
#endif /* AVUTIL_MOTION_VECTOR_H */
|
||||
|
||||
Reference in New Issue
Block a user