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 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.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL