summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-21 11:02:17 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-21 11:11:17 +0100
commit0e69c16e965d737dbd7a1433ef3ae66c09c88742 (patch)
tree0bb9f34a282407006a4ffe48407baac0321f6a8d
parent294bb6cbd7bdc52233ddfa8f88f99aaf0d64d183 (diff)
parentc929659bdd7d2d5848ea52e685a3164c7b901bb0 (diff)
Merge commit 'c929659bdd7d2d5848ea52e685a3164c7b901bb0'
* commit 'c929659bdd7d2d5848ea52e685a3164c7b901bb0': hevc: make the crop sizes unsigned Merged-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 e0af6f1810..a4f7594d2c 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -298,10 +298,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 {