Commit e4f32ef8 authored by Anton Khirnov's avatar Anton Khirnov Committed by Michael Niedermayer

hevc: make the crop sizes unsigned

(cherry picked from commit c929659b)
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5da5e47a
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment