Merge commit 'c929659bdd7d2d5848ea52e685a3164c7b901bb0'

* commit 'c929659bdd7d2d5848ea52e685a3164c7b901bb0':
  hevc: make the crop sizes unsigned

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-03-21 11:02:17 +01:00
commit 0e69c16e96

View File

@ -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 {