Commit 79d82a65 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/hnm: fix decoding of 256x256 video

Fixes Ticket3464
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bdc812ab
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment