aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-03-20 21:28:34 +0100
committerAnton Khirnov <anton@khirnov.net>2015-03-21 09:45:18 +0100
commita219add4e8e2d3192d99d6c6efe97ec7c429c5ad (patch)
treeb8b161b7b427796cd72fa2d383a4ca081fbd1ccd /libavcodec
parent00abc0080d2f5f179f18534713659ce79b22e647 (diff)
downloadffmpeg-a219add4e8e2d3192d99d6c6efe97ec7c429c5ad.tar.gz
hevc: make the crop sizes unsigned
(cherry picked from commit c929659bdd7d2d5848ea52e685a3164c7b901bb0) Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/hevc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 93c5125665..aa84cdcde5 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 {