[]
This is the generic class to store coded (compressed) code-block. It stores the compressed data as well as the necessary side-information.
<p>This class is normally not used. Instead the EncRDCBlk, EncLyrdCBlk and
the DecLyrdCBlk subclasses are used.</p>
public class CodedCBlk
Name | Description |
---|---|
CodedCBlk() | Creates a new CodedCBlk object wit the default values and without allocating any space for its members. |
CodedCBlk(int, int, int, byte[]) | Creates a new CodedCBlk object with the specified values. |
Name | Description |
---|---|
data | The compressed data |
m | The vertical index of the code-block, within the subband. |
n | The horizontal index of the code-block, within the subband. |
skipMSBP | The number of skipped most significant bit-planes. |
Name | Description |
---|---|
ToString() | Returns the contents of the object in a string. The string contains the following data: 'm', 'n', 'skipMSBP' and 'data.length. This is used for debugging. |