summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-03-20 21:28:34 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-04-22 12:27:24 +0200
commite4f32ef8063302fe791c16438a2c19a4a820814b (patch)
treefa3358d272b8597490135a7a359eb5917e16241d
parent5da5e47a1797f198190115b6bbe634b571b1b776 (diff)
downloadffmpeg-e4f32ef8063302fe791c16438a2c19a4a820814b.tar.gz
hevc: make the crop sizes unsigned
(cherry picked from commit c929659bdd7d2d5848ea52e685a3164c7b901bb0) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/hevc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index ac539a2a98..4a9f17f5b9 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -280,10 +280,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 {