libpgf 6.11.32
PGF - Progressive Graphics File
|
Block header used with ROI coding scheme. More...
#include <PGFtypes.h>
Classes | |
struct | RBH |
Named ROI block header (part of the union) More... | |
Public Member Functions | |
ROIBlockHeader (UINT16 v) | |
ROIBlockHeader (UINT32 size, bool end) | |
Public Attributes | |
UINT16 | val |
struct ROIBlockHeader::RBH | rbh |
Block header used with ROI coding scheme.
ROI block header is used with ROI coding scheme. It contains block size and tile end flag
Definition at line 150 of file PGFtypes.h.
ROIBlockHeader::ROIBlockHeader | ( | UINT16 | v | ) | [inline] |
ROIBlockHeader::ROIBlockHeader | ( | UINT32 | size, |
bool | end | ||
) | [inline] |
Constructor
size | Buffer size |
end | 0/1 Flag; 1: last part of a tile |
Definition at line 157 of file PGFtypes.h.
{ ASSERT(size < (1 << RLblockSizeLen)); rbh.bufferSize = size; rbh.tileEnd = end; }
UINT16 ROIBlockHeader::val |
Definition at line 159 of file PGFtypes.h.