author | William Roberts <williamr@symbian.org> |
Wed, 31 Mar 2010 12:33:34 +0100 | |
branch | Symbian3 |
changeset 4 | 837f303aceeb |
parent 2 | 2fe1408b6811 |
permissions | -rw-r--r-- |
williamr@2 | 1 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
williamr@2 | 2 |
// All rights reserved. |
williamr@2 | 3 |
// This component and the accompanying materials are made available |
williamr@4 | 4 |
// under the terms of "Eclipse Public License v1.0" |
williamr@2 | 5 |
// which accompanies this distribution, and is available |
williamr@4 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
williamr@2 | 7 |
// |
williamr@2 | 8 |
// Initial Contributors: |
williamr@2 | 9 |
// Nokia Corporation - initial contribution. |
williamr@2 | 10 |
// |
williamr@2 | 11 |
// Contributors: |
williamr@2 | 12 |
// |
williamr@2 | 13 |
// Description: |
williamr@2 | 14 |
// |
williamr@2 | 15 |
|
williamr@2 | 16 |
/** |
williamr@2 | 17 |
@file |
williamr@2 | 18 |
@publishedAll |
williamr@2 | 19 |
@released |
williamr@2 | 20 |
*/ |
williamr@2 | 21 |
|
williamr@2 | 22 |
#ifndef ICL_PROPERTYUIDS_H |
williamr@2 | 23 |
#define ICL_PROPERTYUIDS_H |
williamr@2 | 24 |
|
williamr@2 | 25 |
|
williamr@2 | 26 |
#include <icl/icl_propertyuids.hrh> |
williamr@2 | 27 |
|
williamr@2 | 28 |
|
williamr@2 | 29 |
/** |
williamr@2 | 30 |
Identifier for the hardware codec property. |
williamr@2 | 31 |
@see KHwCodecUidValue |
williamr@2 | 32 |
*/ |
williamr@2 | 33 |
const TUid KUidHwCodec = {KHwCodecUidValue}; |
williamr@2 | 34 |
|
williamr@2 | 35 |
/** |
williamr@2 | 36 |
Identifier for the software codec property. |
williamr@2 | 37 |
@see KSwCodecUidValue |
williamr@2 | 38 |
*/ |
williamr@2 | 39 |
const TUid KUidSwCodec = {KSwCodecUidValue}; |
williamr@2 | 40 |
|
williamr@2 | 41 |
/** |
williamr@2 | 42 |
Identifier for the default codec property. |
williamr@2 | 43 |
@see KDefaultCodecUidValue |
williamr@2 | 44 |
*/ |
williamr@2 | 45 |
const TUid KUidDefaultCodec = {KDefaultCodecUidValue}; |
williamr@2 | 46 |
|
williamr@2 | 47 |
/** |
williamr@2 | 48 |
Identifier for the Exif support property. |
williamr@2 | 49 |
@see KExifSupportUidValue |
williamr@2 | 50 |
*/ |
williamr@2 | 51 |
const TUid KUidExifSupport = {KExifSupportUidValue}; |
williamr@2 | 52 |
|
williamr@2 | 53 |
/** |
williamr@2 | 54 |
Identifier for the JPEG Sequential property. |
williamr@2 | 55 |
@see KJPGSequentialUidValue |
williamr@2 | 56 |
*/ |
williamr@2 | 57 |
const TUid KUidJPGSequential = {KJPGSequentialUidValue}; |
williamr@2 | 58 |
|
williamr@2 | 59 |
/** |
williamr@2 | 60 |
Identifier for the JPEG Progressive property. |
williamr@2 | 61 |
@see KJPGProgressiveUidValue |
williamr@2 | 62 |
*/ |
williamr@2 | 63 |
const TUid KUidJPGProgressive = {KJPGProgressiveUidValue}; |
williamr@2 | 64 |
|
williamr@2 | 65 |
/** |
williamr@2 | 66 |
Identifier for the arbitrary scaling property. |
williamr@2 | 67 |
@see KArbitraryScalingUidValue |
williamr@2 | 68 |
*/ |
williamr@2 | 69 |
const TUid KUidArbitraryScaling = {KArbitraryScalingUidValue}; |
williamr@2 | 70 |
|
williamr@2 | 71 |
/** |
williamr@2 | 72 |
Identifier for the EColor16MA support property. |
williamr@2 | 73 |
@see KEColor16MASupportUidValue |
williamr@2 | 74 |
*/ |
williamr@2 | 75 |
const TUid KUidEColor16MASupport = {KEColor16MASupportUidValue}; |
williamr@2 | 76 |
|
williamr@2 | 77 |
/** |
williamr@2 | 78 |
Identifier for the thumbnail support property. |
williamr@2 | 79 |
@see KThumbnailSupportUidValue |
williamr@2 | 80 |
*/ |
williamr@2 | 81 |
const TUid KUidThumbnailSupport = {KThumbnailSupportUidValue}; |
williamr@2 | 82 |
|
williamr@2 | 83 |
/** |
williamr@2 | 84 |
Identifier for the thumbnail autogeneration property. |
williamr@2 | 85 |
@see KThumbnailAutogenerationUidValue |
williamr@2 | 86 |
*/ |
williamr@2 | 87 |
const TUid KUidThumbnailAutogeneration = {KThumbnailAutogenerationUidValue}; |
williamr@2 | 88 |
|
williamr@2 | 89 |
/** |
williamr@2 | 90 |
Identifier for the decoding to reduced size support property. |
williamr@2 | 91 |
@see KDecodeToReducedSizeSupportUidValue |
williamr@2 | 92 |
*/ |
williamr@2 | 93 |
const TUid KUidDecodeToReducedSizeSupport = {KDecodeToReducedSizeSupportUidValue}; |
williamr@2 | 94 |
|
williamr@4 | 95 |
/** |
williamr@4 | 96 |
Identifier for the auto rotate support property. |
williamr@4 | 97 |
@see KUidJPGAutoRotateSupportValue |
williamr@4 | 98 |
*/ |
williamr@4 | 99 |
const TUid KUidJPGAutoRotateSupport = {KUidJPGAutoRotateSupportValue}; |
williamr@4 | 100 |
|
williamr@2 | 101 |
/** |
williamr@2 | 102 |
Identifier for an ICL Extension. This is used in the opaque_data section of an ICL |
williamr@2 | 103 |
codec plugin as part of a pair of values "KUidICLExtension <extension_flags_modifier>" |
williamr@2 | 104 |
where extension_flags_modifier is a bitfield advertising extensions that the codec supports. |
williamr@2 | 105 |
@see KICLExtensionUidValue |
williamr@2 | 106 |
@see CImageDecoder::TOptions and CImageEncoder::TOptions for EOptionExt* flags which are valid. |
williamr@2 | 107 |
*/ |
williamr@2 | 108 |
const TUid KUidICLExtension = {KICLExtensionUidValue}; |
williamr@2 | 109 |
|
williamr@2 | 110 |
#endif // ICL_PROPERTYUIDS_H |