Browse Source

avcodec/jpeg2000: change flags array type to 16bit

reduce memory needed for flags

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.8
Michael Niedermayer 10 years ago
parent
commit
d7e224ec24
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/jpeg2000.h

+ 1
- 1
libavcodec/jpeg2000.h View File

@@ -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;



Loading…
Cancel
Save