mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-04-23 07:22:34 +08:00
avutil/motion_vector.h: fix coordinate types
See b0352b1997 for more information on the
feature.
This commit is contained in:
committed by
Clément Bœsch
parent
32cb6c1fe2
commit
980a5b01fd
@@ -33,13 +33,13 @@ typedef struct AVMotionVector {
|
||||
*/
|
||||
uint8_t w, h;
|
||||
/**
|
||||
* Absolute source position.
|
||||
* Absolute source position. Can be outside the frame area.
|
||||
*/
|
||||
uint16_t src_x, src_y;
|
||||
int16_t src_x, src_y;
|
||||
/**
|
||||
* Absolute destination position.
|
||||
* Absolute destination position. Can be outside the frame area.
|
||||
*/
|
||||
uint16_t dst_x, dst_y;
|
||||
int16_t dst_x, dst_y;
|
||||
/**
|
||||
* Extra flag information.
|
||||
* Currently unused.
|
||||
|
||||
Reference in New Issue
Block a user