mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/hnm: fix decoding of 256x256 video
Fixes Ticket3464 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bdc812ab9e
commit
79d82a6574
@ -92,7 +92,7 @@ static int hnm_read_header(AVFormatContext *s)
|
||||
|
||||
hnm->currentframe = 0;
|
||||
|
||||
if (hnm->width < 320 || hnm->width > 640 ||
|
||||
if (hnm->width < 256 || hnm->width > 640 ||
|
||||
hnm->height < 150 || hnm->height > 480) {
|
||||
av_log(s, AV_LOG_ERROR,
|
||||
"invalid resolution: %ux%u\n", hnm->width, hnm->height);
|
||||
|
Loading…
Reference in New Issue
Block a user