nn::jpeg::CTR::MpRegionsToBuildJpegData Structure

Syntax

struct MpRegionsToBuildJpegData
{
   const u8 * pSrc1;
   size_t size1;
   const u8 * pSrc2;
   size_t size2;
};

Description

Structure holding the region information (pointer and byte count) for rebuilding the JPEG data.

Use JpegMpEncoder::GetMpRegionsToBuildJpegData to get the region information from the encoding result of JpegMpEncoder::StartMpEncoderFirst, JpegMpEncoder::StartMpEncoderNext or JpegMpEncoder::StartMpEncoderLR.

Use JpegMpDecoder::GetMpRegionsToBuildJpegData to get region information from individual image data stored in MP format.

Member Variables

pSrc1 Pointer to the first-half memory region.
size1 Number of bytes in the first-half memory region.
pSrc2 Pointer to the bottom half of the memory region.
size2 Number of bytes in the second-half memory region.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL