Commit 5ef578d0 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeg2000dec: Also include remaining length in "Block length" error message

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dd940093
...@@ -915,8 +915,8 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile, ...@@ -915,8 +915,8 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|| sizeof(cblk->data) < cblk->length + cblk->lengthinc[cwsno] + 4 || sizeof(cblk->data) < cblk->length + cblk->lengthinc[cwsno] + 4
) { ) {
av_log(s->avctx, AV_LOG_ERROR, av_log(s->avctx, AV_LOG_ERROR,
"Block length %"PRIu16" or lengthinc %d is too large\n", "Block length %"PRIu16" or lengthinc %d is too large, left %d\n",
cblk->length, cblk->lengthinc[cwsno]); cblk->length, cblk->lengthinc[cwsno], bytestream2_get_bytes_left(&s->g));
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
......
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