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

avcodec/jpeg2000dec: Increase tile part limit to 256

This is the maximum that the syntax of jpeg2000 is capable to store

Fixes Ticket4639
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6fb96afd
...@@ -60,7 +60,7 @@ typedef struct Jpeg2000Tile { ...@@ -60,7 +60,7 @@ typedef struct Jpeg2000Tile {
uint8_t properties[4]; uint8_t properties[4];
Jpeg2000CodingStyle codsty[4]; Jpeg2000CodingStyle codsty[4];
Jpeg2000QuantStyle qntsty[4]; Jpeg2000QuantStyle qntsty[4];
Jpeg2000TilePart tile_part[32]; Jpeg2000TilePart tile_part[256];
uint16_t tp_idx; // Tile-part index uint16_t tp_idx; // Tile-part index
} Jpeg2000Tile; } Jpeg2000Tile;
......
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