Commit d7e224ec authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeg2000: change flags array type to 16bit

reduce memory needed for flags
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d5802555
......@@ -124,7 +124,7 @@ enum Jpeg2000Quantsty { // quantization style
typedef struct Jpeg2000T1Context {
int data[JPEG2000_MAX_CBLKW][JPEG2000_MAX_CBLKH];
int flags[JPEG2000_MAX_CBLKW + 2][JPEG2000_MAX_CBLKH + 2];
uint16_t flags[JPEG2000_MAX_CBLKW + 2][JPEG2000_MAX_CBLKH + 2];
MqcState mqc;
} Jpeg2000T1Context;
......
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