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