Commit 7003d650 authored by Paul B Mahol's avatar Paul B Mahol

lavc/gifdec: remove obsolete check

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 51c7af9d
......@@ -370,11 +370,6 @@ static int gif_read_header1(GifState *s)
s->transparent_color_index = -1;
s->screen_width = bytestream2_get_le16u(&s->gb);
s->screen_height = bytestream2_get_le16u(&s->gb);
if( (unsigned)s->screen_width > 32767
|| (unsigned)s->screen_height > 32767){
av_log(s->avctx, AV_LOG_ERROR, "picture size too large\n");
return AVERROR_INVALIDDATA;
}
v = bytestream2_get_byteu(&s->gb);
s->color_resolution = ((v & 0x70) >> 4) + 1;
......
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