Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/JP2K.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ namespace JP2K
};

const int SqcdOFST = 0;
const int SPqcdOFST = 1;

enum QuantizationType_t
{
Expand All @@ -186,8 +185,8 @@ namespace JP2K
QCD(const Marker& M)
{
assert(M.m_Type == MRK_QCD);
m_MarkerData = M.m_Data + 2;
m_DataSize = M.m_DataSize - 2;
m_MarkerData = M.m_Data;
m_DataSize = M.m_DataSize;
}

~QCD() {}
Expand Down