Commit 0e69c16e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'c929659b'

* commit 'c929659b':
  hevc: make the crop sizes unsigned
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 294bb6cb c929659b
...@@ -298,10 +298,10 @@ typedef struct RefPicListTab { ...@@ -298,10 +298,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