Update contrib.
1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef ECAMIMAGEPROCESSINGINTF_H
23 #define ECAMIMAGEPROCESSINGINTF_H
25 #include <ecamimageprocessing.h>
26 #include <ecam/ecamadvsettingsintfuids.hrh>
28 /** This is the UID which is used to obtain the interface MCameraImageProcessing, via the
29 CCamera::CustomInterface() call, which provides implementation of the M-class interface. */
30 static const TUid KECamMCameraImageProcessingUid = {KECamMCameraImageProcessingUidValue};
33 This is the UID which is used to obtain the interface MCameraImageProcessing2, via the
34 CCamera::CustomInterface() call, which provides implementation of the M-class interface.
36 static const TUid KECamMCameraImageProcessing2Uid = {KECamMCameraImageProcessing2UidValue};
39 This is the UID which is used to obtain the interface MCameraImageProcessing3, via the
40 CCamera::CustomInterface() call, which provides implementation of the M-class interface.
44 static const TUid KECamMCameraImageProcessing3Uid = {KECamMCameraImageProcessing3UidValue};
48 Mixin class for implementation by providers of the Image Processing Camera Extension API.
50 This class is used to perform image processing operations on the camera.
51 These include brightness, contrast, gamma, hue, sharpness and saturation adjustments. The client is also
52 able to perform simple image transformations like cropping, rotation, mirroring, scaling, noise reduction and glare reduction. .
53 When an operation selection is complete, all clients are notified with the respective event UID.
55 As often cameras may support only a subset of discrete values of the allowed range,
56 the API allows the client to retrieve those and use them explicitly.
58 @note it is assumed that setting a new value for a transformations(transform, adjust, effect) effectively
59 activates the transformations. Whilst for effects and adjustments there is always a value, transforms
60 may have a dependency on other parameters and
61 crop - requires setting of source rectangle.
62 scale - will use setting of source rectangle, and the magnification factor is
63 determined by the source rectangle and the output size. This is always magnification.
64 if a value is set, it is assumed to be a scaling factor multiplied by KECamFineResolutionFactor
66 mirror - values of TMirror type.
67 rotation - the angle in degrees.
68 noise reduction - TNoiseReduction.
69 glare removal - TGlareReduction.
72 Let's assume that an application would need to check whether gamma correction is
73 supported on a particular platform. After obtaining a valid pointer to the interface,
74 it would call GetSupportedTransformationsL() to obtain the list of the supported
75 tranformations and check whether KUidECamEventImageProcessingAdjustGamma
76 is in the list. If it is then call SetTranformationValue(KUidECamEventImageProcessingAdjustGamma, 200);
77 to set the new value. A notification will be generated to the client to indicate success.
82 class MCameraImageProcessing
88 Releases the interface.
90 virtual void Release()=0;
92 /** Get all transformations supported on the camera.
94 @param aTransformations
95 An empty RArray of TUids to store the UIDs of the supported transformations.
97 @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
99 virtual void GetSupportedTransformationsL(RArray<TUid>& aTransformations) const=0;
101 /** Get currently active transformations on the camera.
103 @param aTransformations
104 An empty RArray of TUids to store the UIDs of the supported transformations.
106 @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
108 virtual void GetActiveTransformationsL(RArray<TUid>& aTransformations) const=0;
110 /** Get all values supported by an active transformation.
112 @param aTransformation
113 The UID of active transform for which values are requested.
116 An array of integers to represent the values for the requested transformation.
119 Additional information describing the returned array of values.
121 @note depending on the value of aInfo parameter, same array of values may describe
122 different set of values.
123 When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
124 and the corresponding getter/setters for this feature should not be used.
126 @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
128 virtual void GetTransformationSupportedValuesL(TUid aTransformation, RArray<TInt>& aValues, TValueInfo& aInfo) const=0;
131 @deprecated Use TInt GetTransformationValue(TUid aTransformation, TInt& aTransformationValue);
133 Get the current value of a transformation
135 @param aTransformation
136 The UID of the transformation
138 @return The integer value of the tranformation.
140 virtual TInt TransformationValue(TUid aTransformation) const=0;
142 /** Get the current value of a transformation
144 @param aTransformation
145 The UID of the transformation
147 @param aTransformationValue
148 Reference to the integer value of the tranformation.
150 @return system wide error code.
152 virtual TInt GetTransformationValue(TUid aTransformation, TInt& aTransformationValue) const=0;
154 /** Set new value for a transformation.
155 A notification event with the transformation UID is sent to
156 all clients. UIDs are in the form KUidECamEventImageProcessingXXXX.
158 @param aTransformation
159 The UID of the transformation
162 The integer value of the tranformation.
164 virtual void SetTransformationValue(TUid aTransformation, TInt aValue)=0;
166 /** Get the sequence of all active transforms, ordered in order of execution.
168 @param aTransformSequence
169 an empty array to be populated with sequence of transform UIDs,
170 where transform entries with smaller index are executed earlier.
172 @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
174 virtual void GetActiveTransformSequenceL(RArray<TUid>& aTransformSequence) const=0;
177 Set the order of all active transform in terms of execution. The transforms with
178 smaller index are executed earlier.
180 @param aTransformSequence
181 The list of ordered transforms, where transforms with smaller
182 index are executed earlier.
184 @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
186 virtual void SetActiveTransformSequenceL(RArray<TUid>& aTransformSequence)=0;
189 Set the source rectangle for KUidECamEventImageProcessingTransformScale or
190 KUidECamEventImageProcessingTransformCrop.
191 The coordinates should fall within the current image rectangle. The result
192 is always a logical AND operation between the two rectangles.
195 a reference to TRect object which describes the coordinates of the
198 virtual void SetSourceRect(const TRect& aRect)=0;
201 Get the source rectangle for KUidECamEventImageProcessingTransformScale or
202 KUidECamEventImageProcessingTransformCrop.
203 The coordinates should fall within the current image rectangle. The result
204 is always a logical AND operation between the two rectangles.
207 a reference to a TRect object to hold the current source rectangle
208 coordinates. If it has not been set, the coordinates match these of
211 virtual void GetSourceRect(TRect& aRect) const=0;
215 Mixin class for implementation of extended features like color swap and color accent processing
216 by providers of the Image Processing Camera Extension API.
221 class MCameraImageProcessing2
227 Releases the interface.
229 virtual void Release()=0;
232 Retrieves the maximum number of simultaneous color swapping possible.
234 @param aConcurrentColorSwappingSupported
235 Retrieves the number of simultaneous color swapping supported.
236 Retrieves 0 when swapping feature is not supported.
238 @leave May leave as a result of some error.
240 virtual void GetConcurrentColorSwappingsSupportedL(TInt& aConcurrentColorSwappingSupported) const=0;
243 Retrieves the color swapping capabilites per entry, if different entries have different capabilities
244 otherwise the same capabilities retrieved for a particular entry can be assumed to be valid for every entry
247 This is a value from 0 to numOfSimultaneousColorSwappings -1. Color swapping capabilities specific to
248 a particular entry are retrieved. If uniform capability exists for every entry, then this method need not
251 @param aColorSwapCapabilities
252 This retrieves the color swap capabilities.
254 @leave May leave as a result of some error.
256 virtual void GetColorSwapCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorSwapCapabilities) const=0;
259 Set the color swap entries
262 This is a value from 0 to numOfSimultaneousColorSwappings -1. This helps in managing the limited no. of
263 simultaneous color swaps. If parameters are already set for the given entry, then it's up to the implementation
264 to replace the existing one or discard it.
266 @param aColorSwapParameters
267 The parameters necessary to define clearly the color swapping operation for the given entry.
268 iEntryStatus has to be updated by the implementation as per the result of the setting operation.
269 So, iEntryStatus value is redundant at this point.
271 @note Triggers KUidECamEventCIPSetColorSwapEntry to all MCameraObserver2 clients of the camera.
272 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should
273 be used in order to provide the entry no. of the color being set.
274 Implementation Hint: On success, entry status (iEntryStatus) for that entry should
275 be set to TValueInfo::EDiscreteSteps and saved on the implementation side.
277 virtual void SetColorSwapEntry(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters)=0;
280 Removes the color swap entry corresponding to the given index
283 This gives the color swapping entry to be removed.
285 @note Triggers KUidECamEventCIPRemoveColorSwapEntry to all MCameraObserver2 clients of the camera.
286 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
287 used in order to provide the entry no. of the color being removed.
288 Implementation Hint: On success, entry status (iEntryStatus) for that entry should
289 be set to TValueInfo::ENotActive and saved on the implementation side.
291 virtual void RemoveColorSwapEntry(TInt aIndex)=0;
294 Get the details of the color swap entry corresponding to the given index
297 This gives the color swapping entry whose information has to be retrieved.
299 @param aColorSwapParameters
300 This contains the parameters currently being used by the color swapping operation for the given entry.
302 @leave May leave as a result of some error.
304 virtual void GetColorSwapEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const=0;
307 Starts the color swapping process after taking into account the color swap entries updated up to this point.
309 @note Triggers KUidECamEventCIPStartColorSwap to all MCameraObserver2
310 clients of the camera. HandleEvent is used to report the result or any possible error.
311 One possible error case is when more than one entry describe the same color source.
312 New ecam error KErrECamColorOperationConflict used in such a case.
314 virtual void StartColorSwapping()=0;
317 Cancel the color swapping process.
319 @leave May leave as a result of some error.
321 @note Used to cancel the color swapping process which might have been just started.
322 If the issued StartColorSwappingL() gets cancelled, its event should report KErrCancel.
324 virtual void CancelColorSwappingL()=0;
327 Retrieves the maximum number of color entries on which simultaneous color accent process is possible.
329 @param aConcurrentColorAccentSupported
330 Retrieves the number of color entries on which simultaneous color accent process is possible.
331 Retrieves 0 when color accent process is not supported.
333 @leave May leave as a result of some error.
335 virtual void GetConcurrentColorAccentSupportedL(TInt& aConcurrentColorAccentSupported) const=0;
338 Retrieves the color accent capabilites per entry, if different entries have different capabilities
339 otherwise the same capabilities retrieved for a particular entry can be assumed to be valid for every entry
342 This is a value from 0 to numOfSimultaneousColorAccent -1. Color accent capabilities specific to
343 a particular entry are retrieved. If uniform capability exists for every entry, then this method need not
346 @param aColorAccentCapabilities
347 This retrieves the color accent capabilities.
349 @leave May leave as a result of some error.
351 virtual void GetColorAccentCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorAccentCapabilities) const=0;
354 Set the color accent entries
357 This is a value from 0 to numOfSimultaneousColorAccent -1. This helps in managing the limited no. of
358 simultaneous color accent. If parameters are already set for the given entry, then it's up to the implementation
359 to replace the existing one or discard it.
361 @param aColorAccentParameters
362 The parameters necessary to define clearly the color accent operation for the given entry.
363 iEntryStatus has to be updated by the implementation as per the result of the setting operation.
364 So, iEntryStatus value is redundant at this point. The parameters defined for target colors in
365 TColorOperationEntry are redundant for color accent.
367 @note Triggers KUidECamEventCIPSetColorAccentEntry to all MCameraObserver2 clients of the camera.
368 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
369 used in order to provide the entry no. of the color being set.
370 Implementation Hint: On success, entry status (iEntryStatus) for that entry should
371 be set to TValueInfo::EDiscreteSteps and saved on the implementation side.
373 virtual void SetColorAccentEntry(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters)=0;
376 Removes the color accent entry corresponding to the given index
379 This gives the color accent entry to be removed.
381 @note Triggers KUidECamEventCIPRemoveColorAccentEntry to all MCameraObserver2 clients of the camera.
382 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
383 used in order to provide the entry no. of the color being removed.
384 Implementation Hint: On success, entry status (iEntryStatus) for that entry should
385 be set to TValueInfo::ENotActive and saved on the implementation side.
387 virtual void RemoveColorAccentEntry(TInt aIndex)=0;
390 Get the details of the color accent entry corresponding to the given index
393 This gives the color accent entry whose information has to be retrieved.
395 @param aColorAccentParameters
396 This contains the parameters currently being used by the color accent operation for the given entry.
397 The parameters defined for target colors in TColorOperationEntry are redundant for color accent.
399 @leave May leave as a result of some error.
401 virtual void GetColorAccentEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const=0;
404 Starts the color accent process after taking into account the color accent entries updated up to this point.
406 @note Triggers KUidECamEventCIPStartColorAccent to all MCameraObserver2
407 clients of the camera. HandleEvent is used to report the result or any possible error.
409 virtual void StartColorAccent()=0;
412 Cancel the color accent process.
414 @leave May leave as a result of some error.
416 @note Used to cancel the color accent process which might have been just started.
417 If the issued StartColorAccentL() gets cancelled, its event should report KErrCancel.
419 virtual void CancelColorAccentL()=0;
423 Mixin class for implementation of extended features like custom orientation and event filtering
424 by providers of the Image Processing Camera Extension API.
429 class MCameraImageProcessing3
435 Releases the interface.
437 virtual void Release()=0;
440 Retrieves the supported options for a particular orientation reference.
442 @param aOrientationReference
443 A TOrientationReference for which supported relative custom orientation have to retrieved.
445 @param aSupportedRelativeRotation
446 A bitfield which retrieves the supported TRelativeRotation for 'aOrientationReference'
448 @param aSupportedRelativeMirroring
449 A bitfield which retrieves the supported TRelativeMirror for 'aOrientationReference'
451 @param aSupportedRelativeFlipping
452 A bitfield which retrieves the supported TRelativeFlipping for 'aOrientationReference'
454 @leave May leave with any error code.
456 virtual void GetSupportedRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference aOrientationReference,
457 TUint& aSupportedRelativeRotation, TUint& aSupportedRelativeMirroring, TUint& aSupportedRelativeFlipping) const=0;
460 Retrieves the options which is being used for the current orientation reference.
462 @param aOrientationReference
463 A TOrientationReference which is the current orientation reference being used.
465 @param aRelativeRotation
466 A TRelativeRotation which is the current relative rotation being used with aOrientationReference.
468 @param aRelativeMirror
469 A TRelativeMirror which is the current relative mirroring being used with aOrientationReference.
471 @param aRelativeFlipping
472 A TRelativeFlipping which is the current relative flipping being used with aOrientationReference.
474 @leave May leave with any error code.
476 virtual void GetCurrentRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference& aOrientationReference,
477 CCamera::CCameraImageProcessing::TRelativeRotation& aRelativeRotation,
478 CCamera::CCameraImageProcessing::TRelativeMirror& aRelativeMirror,
479 CCamera::CCameraImageProcessing::TRelativeFlipping& aRelativeFlipping) const=0;
482 Sets the options which would be used with the desired orientation reference.
484 @param aOrientationReference
485 The desired TOrientationReference.
487 @param aRelativeRotation
488 The desired TRelativeRotation which would be used with 'aOrientationReference'.
490 @param TRelativeMirror
491 The desired TRelativeMirror which would be used with 'aOrientationReference'
493 @param TRelativeFlipping
494 The desired TRelativeFlipping which would be used with 'aOrientationReference'
496 @note Event KUidECamEventImageProcessingTransformRelativeOrientation is used to notify clients about relative
497 custom orientation setting operation.
499 @note If the current picture orientation (Refer CCamera::CCameraAdvancedSettings::TPictureOrientation) is not possible
500 to be achieved with the relative custom orientation, event KUidECamEventPictureOrientationUnachievable will be
501 notified to the client.
503 @note If the dimension of the image gets changed by the desired relative orientation options, notification
504 KUidECamEventCameraSettingImageSize will be notified to the client.
506 virtual void SetRelativeOrientationOptions(CCamera::CCameraImageProcessing::TOrientationReference aOrientationReference,
507 CCamera::CCameraImageProcessing::TRelativeRotation aRelativeRotation,
508 CCamera::CCameraImageProcessing::TRelativeMirror aRelativeMirror,
509 CCamera::CCameraImageProcessing::TRelativeFlipping aRelativeFlipping) const=0;
512 #endif // ECAMIMAGEPROCESSINGINTF_H