diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-27 22:25:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-27 22:25:03 +0200 |
commit | f82e7330af53312c32049131aa96cae6ed1a3c8a (patch) | |
tree | 334d846317d59fb5b1bbf07c0cb58b0680154a34 /libavcodec | |
parent | d4a4661342640726d80dff0ac26656aac2a4e306 (diff) | |
download | ffmpeg-f82e7330af53312c32049131aa96cae6ed1a3c8a.tar.gz |
jpeg2000: merge mant type from j2k
mant fits in 16bit
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/jpeg2000.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jpeg2000.h b/libavcodec/jpeg2000.h index 40b7272113..22b8927b80 100644 --- a/libavcodec/jpeg2000.h +++ b/libavcodec/jpeg2000.h @@ -144,7 +144,7 @@ typedef struct Jpeg2000CodingStyle { typedef struct Jpeg2000QuantStyle { uint8_t expn[32 * 3]; // quantization exponent - uint32_t mant[32 * 3]; // quantization mantissa + uint16_t mant[32 * 3]; // quantization mantissa uint8_t quantsty; // quantization style uint8_t nguardbits; // number of guard bits } Jpeg2000QuantStyle; |