summaryrefslogtreecommitdiff
path: root/libavcodec/j2k.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/j2k.h')
-rw-r--r--libavcodec/j2k.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/j2k.h b/libavcodec/j2k.h
index 1c077f9cf1..c3959455e1 100644
--- a/libavcodec/j2k.h
+++ b/libavcodec/j2k.h
@@ -130,8 +130,6 @@ typedef struct Jpeg2000CodingStyle {
log2_cblk_height; // exponent of codeblock size
uint8_t transform; // DWT type
uint8_t csty; // coding style
- uint8_t log2_prec_width,
- log2_prec_height; // precinct size
uint8_t nlayers; // number of layers
uint8_t mct; // multiple component transformation
uint8_t cblk_style; // codeblock coding style
@@ -172,7 +170,7 @@ typedef struct Jpeg2000Prec {
typedef struct Jpeg2000Band {
uint16_t coord[2][2]; // border coordinates {{x0, x1}, {y0, y1}}
- uint16_t codeblock_width, codeblock_height;
+ uint16_t log2_cblk_width, log2_cblk_height;
uint16_t cblknx, cblkny;
uint32_t stepsize; // quantization stepsize (* 2^13)
Jpeg2000Prec *prec;