nn::jpeg::CTR::MpEntry Structurestruct MpEntry
{
u32 type;
size_t imageDataSize;
size_t offsetToImageData;
u16 dependentImage1EntryNum;
u16 dependentImage2EntryNum;
const u8 * pFirstImageData;
};
Structure holding an MP entry in a format easily processed by the library. MP entries are included in the data stored in MP format.
Initialize this (get its information) using the JpegMpDecoder::GetMpEntry function.
| type | Individual image type management information. | |
|---|---|---|
| imageDataSize | Individual image size (in bytes). | |
| offsetToImageData | Individual image data offset. This offset is measured from the starting image data and already takes into account the MP format's offset address origin point. | |
| dependentImage1EntryNum | Dependent image 1 entry number. | |
| dependentImage2EntryNum | Dependent image 2 entry number. | |
| pFirstImageData | Pointer to the starting image data. |
CONFIDENTIAL