diff options
| author | John Hurst <jhurst@cinecert.com> | 2023-07-31 08:02:00 -0700 |
|---|---|---|
| committer | John Hurst <jhurst@cinecert.com> | 2023-07-31 08:02:00 -0700 |
| commit | 1f52124a55fce065e09c728513b715ecb7e01452 (patch) | |
| tree | 14cfb7d908201cda5ef594a6fb626bde1c04c364 | |
| parent | 31e6bb2b3dfc330ae9ca35add278836cdc6ad19a (diff) | |
fix: corrected byte offset of SqcdOFST and SPqcdOFST in j2c parser
| -rwxr-xr-x | src/JP2K.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -161,8 +161,8 @@ namespace JP2K void Dump(FILE* stream = 0) const; }; - const int SqcdOFST = 1; - const int SPqcdOFST = 2; + const int SqcdOFST = 0; + const int SPqcdOFST = 1; enum QuantizationType_t { |
