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

Use JpegMpEncoder::GetMpRegionsToBuildJpegData instead to get the region information from results that were encoded by 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 second-half memory region.
size2 Number of bytes in the second-half memory region.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL