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:
authorAnton Khirnov <anton@khirnov.net>2015-03-20 23:28:34 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-22 01:59:50 +0300
commit742d7e9a6e4e7dce6c2559b5a8f5cab4c111e430 (patch)
tree6a0f2d68fa2ad1ddb8a91c34f9f3e6074673bd96
parenteb6f2a183acdc57b2f52e5b1d2c0772c5c883f46 (diff)
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 8fdefbbdcf..d88c7a527f 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 {