nn::jpeg::CTR::MpEntry

nn::jpeg::CTR::MpEntry Structure

Syntax

struct MpEntry
{
u32 type;
size_t imageDataSize;
size_t offsetToImageData;
u16 dependentImage1EntryNum;
u16 dependentImage2EntryNum;
const u8 * pFirstImageData;
};

Description

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.

Member Variables

type u32 Individual image type management information.
imageDataSize size_t Individual image size (in bytes).
offsetToImageData size_t 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 u16 Dependent image 1 entry number.
dependentImage2EntryNum u16 Dependent image 2 entry number.
pFirstImageData const u8 * Pointer to the starting image data.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL