From 79d82a65744b94406ac06677d42373879529926a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 16 Apr 2014 01:37:38 +0200 Subject: [PATCH] avformat/hnm: fix decoding of 256x256 video Fixes Ticket3464 Signed-off-by: Michael Niedermayer --- libavformat/hnm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hnm.c b/libavformat/hnm.c index 8c381021c5..1320fa5206 100644 --- a/libavformat/hnm.c +++ b/libavformat/hnm.c @@ -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);