1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

hevc: make the crop sizes unsigned

This commit is contained in:
Anton Khirnov 2015-03-20 21:28:34 +01:00
parent 22a6d48b0d
commit c929659bdd

View File

@ -284,10 +284,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 {