avutil/motion_vector.h: fix coordinate types

See b0352b1997 for more information on the
feature.
This commit is contained in:
Clément Bœsch
2014-08-20 23:24:17 +02:00
committed by Clément Bœsch
parent 32cb6c1fe2
commit 980a5b01fd
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -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.