diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-01 10:01:10 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-07-02 20:05:44 +0200 |
commit | 86a2602e16171ddc10c3ec655c23b16ffa595059 (patch) | |
tree | f805a2967e16cfa4425bdd781f0f1316e7da0333 /libavcodec/jpeg2000.h | |
parent | ac921338a4986d8cceece8e052dd4af60576d542 (diff) | |
download | ffmpeg-86a2602e16171ddc10c3ec655c23b16ffa595059.tar.gz |
jpeg2000: Drop unused and writeonly fields
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/jpeg2000.h')
-rw-r--r-- | libavcodec/jpeg2000.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/jpeg2000.h b/libavcodec/jpeg2000.h index 9282dd50a5..00bfcdda81 100644 --- a/libavcodec/jpeg2000.h +++ b/libavcodec/jpeg2000.h @@ -136,8 +136,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,6 @@ typedef struct Jpeg2000Cblk { } Jpeg2000Cblk; // code block typedef struct Jpeg2000Prec { - uint16_t xi0, yi0; // codeblock indexes ([xi0, xi1)) uint16_t nb_codeblocks_width; uint16_t nb_codeblocks_height; Jpeg2000TgtNode *zerobits; @@ -186,7 +183,6 @@ typedef struct Jpeg2000Prec { typedef struct Jpeg2000Band { uint16_t coord[2][2]; // border coordinates {{x0, x1}, {y0, y1}} uint16_t log2_cblk_width, log2_cblk_height; - uint16_t cblknx, cblkny; float stepsize; // quantization stepsize Jpeg2000Prec *prec; } Jpeg2000Band; // subband |