diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-03-20 21:28:34 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 09:35:14 +0100 |
commit | c929659bdd7d2d5848ea52e685a3164c7b901bb0 (patch) | |
tree | 4944a87f1cea9ef222b9fedb399dd3aa9da98bd3 | |
parent | 22a6d48b0d7367b3a45dd6db245f8ffaaa364995 (diff) | |
download | ffmpeg-c929659bdd7d2d5848ea52e685a3164c7b901bb0.tar.gz |
hevc: make the crop sizes unsigned
-rw-r--r-- | libavcodec/hevc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 333ea4634b..068c10a8ff 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -284,10 +284,10 @@ typedef struct RefPicListTab { } RefPicListTab; typedef struct HEVCWindow { - int left_offset; - int right_offset; - int top_offset; - int bottom_offset; + unsigned int left_offset; + unsigned int right_offset; + unsigned int top_offset; + unsigned int bottom_offset; } HEVCWindow; typedef struct VUI { |