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