|
|
@ -384,6 +384,11 @@ static int get_cox(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c) |
|
|
|
return AVERROR_INVALIDDATA; |
|
|
|
return AVERROR_INVALIDDATA; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (c->log2_cblk_width > 6 || c->log2_cblk_height > 6) { |
|
|
|
|
|
|
|
avpriv_request_sample(s->avctx, "cblk size > 64"); |
|
|
|
|
|
|
|
return AVERROR_PATCHWELCOME; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
c->cblk_style = bytestream2_get_byteu(&s->g); |
|
|
|
c->cblk_style = bytestream2_get_byteu(&s->g); |
|
|
|
if (c->cblk_style != 0) { // cblk style
|
|
|
|
if (c->cblk_style != 0) { // cblk style
|
|
|
|
av_log(s->avctx, AV_LOG_WARNING, "extra cblk styles %X\n", c->cblk_style); |
|
|
|
av_log(s->avctx, AV_LOG_WARNING, "extra cblk styles %X\n", c->cblk_style); |
|
|
@ -1025,6 +1030,9 @@ static int decode_cblk(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *codsty, |
|
|
|
int bpass_csty_symbol = codsty->cblk_style & JPEG2000_CBLK_BYPASS; |
|
|
|
int bpass_csty_symbol = codsty->cblk_style & JPEG2000_CBLK_BYPASS; |
|
|
|
int vert_causal_ctx_csty_symbol = codsty->cblk_style & JPEG2000_CBLK_VSC; |
|
|
|
int vert_causal_ctx_csty_symbol = codsty->cblk_style & JPEG2000_CBLK_VSC; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
av_assert0(width <= JPEG2000_MAX_CBLKW); |
|
|
|
|
|
|
|
av_assert0(height <= JPEG2000_MAX_CBLKH); |
|
|
|
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) |
|
|
|
for (y = 0; y < height; y++) |
|
|
|
memset(t1->data[y], 0, width * sizeof(**t1->data)); |
|
|
|
memset(t1->data[y], 0, width * sizeof(**t1->data)); |
|
|
|
|
|
|
|
|
|
|
|