TCLMakerNote

Definition

#include <twl/tcl.h>


typedef struct
{
    union
    {
        u32 bitField;
        struct
        {
            u32 imageType :  2;
            u32 reserved0 : 30;
        };
    };
    u32 reserved1;
} TCLMakerNote;
	

Description

This structure embeds information in a JPEG file's Exif tag , which enables the image to be loaded by the DSi camera.

The TCL_EncodeAndWritePicture(Ex) function that is used when encoding embeds to the MakerNote internally, so there is no need to be directly concerned with this structure.

Sometimes it is necessary to evaluate the appropriateness of the decoded JPEG image. For more information, see the TCL_IsSameImageType function.

The direct use of any of its members from an application is prohibited.

See Also

TCL_EncodeAndWritePicture(Ex)
TCL_IsSameImageType

Revision History

2009/03/04 Added description of use of structure when encoding/decoding.
2008/10/07 Initial version.


CONFIDENTIAL