mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-10 09:09:50 +00:00
hevc: make the crop sizes unsigned
(cherry picked from commit c929659bdd
)
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
00abc0080d
commit
a219add4e8
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user