You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avcodec/hnm4video: change width/height to int
Fixes hypothetical integer overflows Related to CID1135770 & CID1135771 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -36,8 +36,8 @@
|
|||||||
|
|
||||||
typedef struct Hnm4VideoContext {
|
typedef struct Hnm4VideoContext {
|
||||||
uint8_t version;
|
uint8_t version;
|
||||||
uint16_t width;
|
int width;
|
||||||
uint16_t height;
|
int height;
|
||||||
uint8_t *current;
|
uint8_t *current;
|
||||||
uint8_t *previous;
|
uint8_t *previous;
|
||||||
uint8_t *buffer1;
|
uint8_t *buffer1;
|
||||||
|
Reference in New Issue
Block a user