Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/motion_vector.h')
-rw-r--r--libavutil/motion_vector.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/motion_vector.h b/libavutil/motion_vector.h
index 245e5116a3..30cfb994b7 100644
--- a/libavutil/motion_vector.h
+++ b/libavutil/motion_vector.h
@@ -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.