Commit c929659b authored by Anton Khirnov's avatar Anton Khirnov

hevc: make the crop sizes unsigned

parent 22a6d48b
...@@ -284,10 +284,10 @@ typedef struct RefPicListTab { ...@@ -284,10 +284,10 @@ typedef struct RefPicListTab {
} RefPicListTab; } RefPicListTab;
typedef struct HEVCWindow { typedef struct HEVCWindow {
int left_offset; unsigned int left_offset;
int right_offset; unsigned int right_offset;
int top_offset; unsigned int top_offset;
int bottom_offset; unsigned int bottom_offset;
} HEVCWindow; } HEVCWindow;
typedef struct VUI { 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