You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
jpeg2000: Validate resolution levels
There are 32 maximum decomposition levels, thus 33 resolution levels. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
@@ -251,7 +251,12 @@ static int get_cox(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c)
|
|||||||
|
|
||||||
if (s->buf_end - s->buf < 5)
|
if (s->buf_end - s->buf < 5)
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
c->nreslevels = bytestream_get_byte(&s->buf) + 1; // num of resolution levels - 1
|
/* nreslevels = number of resolution levels
|
||||||
|
= number of decomposition level +1 */
|
||||||
|
c->nreslevels = bytestream_get_byte(&s->buf) + 1;
|
||||||
|
|
||||||
|
if (c->nreslevels > JPEG2000_MAX_RESLEVELS)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
/* compute number of resolution levels to decode */
|
/* compute number of resolution levels to decode */
|
||||||
if (c->nreslevels < s->reduction_factor)
|
if (c->nreslevels < s->reduction_factor)
|
||||||
|
Reference in New Issue
Block a user