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.
16 #include <ecam/ecamimageprocessingintf.h>
17 #include <ecam/implementationfactoryintf.h>
18 #include <ecamimageprocessing.h>
19 #include "ecamversion.h"
20 #include <ecam/ecamconstants.h>
22 const TInt KBaselinedEffects = 0x000001FF;
23 const TUint KBaselinedImageProcessing = KUidECamEventImageProcessingGlareRemovalUidValue;
26 Factory function for creating the CCameraImageProcessing object.
27 The created object is supposed to be meant for image captures only.
30 a reference to a CCamera object providing the settings.
32 @return a pointer to a fully constructed CCameraImageProcessing object.
34 @leave KErrNoMemory Out of memory Or any other system-wide error code.
36 @note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
38 EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraImageProcessing::NewL(CCamera& aCamera)
40 CCamera::CCameraImageProcessing* self = new (ELeave)CCamera::CCameraImageProcessing(aCamera);
41 CleanupStack::PushL(self);
43 CleanupStack::Pop(self);
51 Factory function for creating the CCameraImageProcessing object specifically for any one of the following:-
52 VideoCapture and Viewfinder. This may be used in
53 other possible cases as well.
55 The other factory method CCamera::CCameraImageProcessing::NewL is assumed for being operated on image captures only.
58 A reference to a CCamera object providing the settings.
61 A reference to the MImplementationFactory derived object.
63 @return a pointer to a fully constructed CCameraImageProcessing object.
65 @leave KErrNoMemory Out of memory.
67 @leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
69 @note This method is supposed to be used by internal ECAM components only.
71 EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraImageProcessing::CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory)
73 if(aCamera.CameraVersion() == KCameraDefaultVersion)
75 User::Leave(KErrExtensionNotSupported);
78 CCamera::CCameraImageProcessing* self = new (ELeave)CCamera::CCameraImageProcessing(aCamera);
79 CleanupStack::PushL(self);
80 self->ConstructL(aImplFactory);
81 CleanupStack::Pop(self);
87 CCameraImageProcessing Constructor.
90 a reference to a CCamera object providing the settings.
92 EXPORT_C CCamera::CCameraImageProcessing::CCameraImageProcessing(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL), iImpl3(NULL)
97 CCameraImageProcessing second phase constructor
98 Function used to initialise internal state of the object. Uses reference to the camera to retrieve
99 Camera image processing interface pointer.
101 @leave KErrNoMemory Out of memory.
103 EXPORT_C void CCamera::CCameraImageProcessing::ConstructL()
105 iImpl = static_cast<MCameraImageProcessing*>(iOwner.CustomInterface(KECamMCameraImageProcessingUid));
108 User::Leave(KErrNotSupported);
111 iImpl2 = static_cast<MCameraImageProcessing2*>(iOwner.CustomInterface(KECamMCameraImageProcessing2Uid));
112 iImpl3 = static_cast<MCameraImageProcessing3*>(iOwner.CustomInterface(KECamMCameraImageProcessing3Uid));
118 CCameraImageProcessing second phase constructor
120 Function used to initialise internal state of the object specifically for any one of the following:-
121 VideoCapture and Viewfinder. This may be used in other possible cases as well.
124 A constant reference to the MImplementationFactory derived object.
126 @leave KErrNoMemory Out of memory; or any other error code as well.
128 @note This method is supposed to be used by this class only.
130 EXPORT_C void CCamera::CCameraImageProcessing::ConstructL(const MImplementationFactory& aImplFactory)
133 TAny* implPtr = NULL;
135 err = aImplFactory.GetImpl(implPtr, KECamMCameraImageProcessingUid);
140 iImpl = static_cast<MCameraImageProcessing*>(implPtr);
143 err = aImplFactory.GetImpl(implPtr, KECamMCameraImageProcessing2Uid);
144 if (err != KErrNone && err != KErrNotSupported)
148 iImpl2 = static_cast<MCameraImageProcessing2*>(implPtr);
151 err = aImplFactory.GetImpl(implPtr, KECamMCameraImageProcessing3Uid);
152 if (err != KErrNone && err != KErrNotSupported)
156 iImpl3 = static_cast<MCameraImageProcessing3*>(implPtr);
162 EXPORT_C CCamera::CCameraImageProcessing::~CCameraImageProcessing()
180 /** Get all transformations supported on the camera.
182 @param aTransformations
183 An empty RArray of TUids to store the UIDs of the supported transformations.
185 @leave KErrNoMemory Out of memory.
187 EXPORT_C void CCamera::CCameraImageProcessing::GetSupportedTransformationsL(RArray<TUid>& aTransformations) const
189 iImpl->GetSupportedTransformationsL(aTransformations);
191 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
192 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
193 from the implementation will be filtered at this point.
194 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
195 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
196 if(iOwner.CameraVersion() == KCameraDefaultVersion)
198 for(TInt index =0; index < aTransformations.Count(); index++)
200 /** KBaselinedImageProcessing is the baseline. Any image processing attribute with greater uid value means that
201 it has been added in later versions */
202 if(aTransformations[index].iUid > KBaselinedImageProcessing)
204 aTransformations.Remove(index);
211 /** Get currently active transformations on the camera.
213 @param aTransformations
214 An empty RArray of TUids to store the UIDs of the supported transformations.
216 @leave KErrNoMemory Out of memory.
218 EXPORT_C void CCamera::CCameraImageProcessing::GetActiveTransformationsL(RArray<TUid>& aTransformations) const
220 iImpl->GetActiveTransformationsL(aTransformations);
222 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
223 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
224 from the implementation will be filtered at this point.
225 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
226 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
227 if(iOwner.CameraVersion() == KCameraDefaultVersion)
229 for(TInt index =0; index < aTransformations.Count(); index++)
231 /** KBaselinedImageProcessing is the baseline. Any image processing attribute with greater uid value means that
232 it has been added in later versions */
233 if(aTransformations[index].iUid > KBaselinedImageProcessing)
235 aTransformations.Remove(index);
242 /** Get all values supported by an active transformation.
244 @param aTransformation
245 The UID of active transform for which values are requested.
248 An array of integers to represent the values for the requested transformation.
251 Additional information describing the returned array of values.
253 @note Depending on the value of aInfo parameter, same array of values may describe
254 different set of values.
255 When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
256 corresponding getter/setters for this feature should not be used in such a case.
258 @note If CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
259 application is not prepared to receive extra added enum values for Effects. So, any extra enum value(unrecognised) passed
260 from the implementation will be filtered at this point.
261 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
262 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
264 @leave KErrNoMemory Out of memory.
266 EXPORT_C void CCamera::CCameraImageProcessing::GetTransformationSupportedValuesL(TUid aTransformation, RArray<TInt>& aValues, TValueInfo& aInfo) const
268 iImpl->GetTransformationSupportedValuesL(aTransformation, aValues, aInfo);
270 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
271 application is not prepared to receive extra added enum values for Effects. So, any extra enum value(unrecognised) passed
272 from the implementation will be filtered at this point.
273 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
274 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
275 if(aTransformation == KUidECamEventImageProcessingEffect)
277 if(iOwner.CameraVersion() == KCameraDefaultVersion)
279 /** it is assumed that implementation will use EBitField to pack all supported effects */
280 if(aInfo == EBitField)
282 aValues[0] &= KBaselinedEffects;
289 @deprecated Use TInt GetTransformationValue(TUid aTransformation, TInt& aTransformationValue);
291 Get the current value of a transformation
293 @param aTransformation
294 The UID of the transformation
296 @return The integer value of the tranformation.
298 @note If CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
299 application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
300 from the implementation will be dropped and EEffectNone would be passed instead.
301 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
302 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
304 EXPORT_C TInt CCamera::CCameraImageProcessing::TransformationValue(TUid aTransformation) const
306 TInt value = iImpl->TransformationValue(aTransformation);
308 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
309 application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
310 from the implementation will be dropped and EEffectNone would be passed instead.
311 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
312 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
313 if(aTransformation == KUidECamEventImageProcessingEffect)
315 if(iOwner.CameraVersion() == KCameraDefaultVersion)
317 if(value > KBaselinedEffects)
319 value = CCamera::CCameraImageProcessing::EEffectNone;
326 /** Get the current value of a transformation
328 @param aTransformation
329 The UID of the transformation
331 @param aTransformationValue
332 Reference to the integer value of the tranformation.
334 @return system wide error code.
336 @note If CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
337 application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
338 from the implementation will be dropped and EEffectNone would be passed instead.
339 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
340 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
342 @note Use this method instead of deprecated TInt TransformationValue(TUid aTransformation)
345 EXPORT_C TInt CCamera::CCameraImageProcessing::GetTransformationValue(TUid aTransformation, TInt& aTransformationValue) const
347 TInt error = iImpl->GetTransformationValue(aTransformation, aTransformationValue);
349 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
350 application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
351 from the implementation will be dropped and EEffectNone would be passed instead.
352 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
353 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
354 if(aTransformation == KUidECamEventImageProcessingEffect)
356 if(iOwner.CameraVersion() == KCameraDefaultVersion)
358 if(aTransformationValue > KBaselinedEffects)
360 aTransformationValue = CCamera::CCameraImageProcessing::EEffectNone;
368 /** Set new value for a transformation.
369 A notification event with the transformation UID is sent to
370 all clients. UIDs are in the form KUidECamEventImageProcessingXXXX.
372 @param aTransformation
373 The UID of the transformation
376 The integer value of the tranformation.
378 EXPORT_C void CCamera::CCameraImageProcessing::SetTransformationValue(TUid aTransformation, TInt aValue)
380 iImpl->SetTransformationValue(aTransformation, aValue);
383 /** Get the sequence of all active transforms, ordered in order of execution.
385 @param aTransformSequence
386 an empty array to be populated with sequence of transform UIDs,
387 where transform entries with smaller index are executed earlier.
389 @leave KErrNoMemory Out of memory.
391 EXPORT_C void CCamera::CCameraImageProcessing::GetActiveTransformSequenceL(RArray<TUid>& aTransformSequence) const
393 iImpl->GetActiveTransformSequenceL(aTransformSequence);
395 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
396 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
397 from the implementation will be filtered at this point.
398 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
399 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
400 if(iOwner.CameraVersion() == KCameraDefaultVersion)
402 for(TInt index =0; index < aTransformSequence.Count(); index++)
404 /** KBaselinedImageProcessing is the baseline. Any image processing attribute with greater uid value means that
405 it has been added in later versions */
406 if(aTransformSequence[index].iUid > KBaselinedImageProcessing)
408 aTransformSequence.Remove(index);
416 Set the order of all active transform in terms of execution. The transforms with
417 smaller index are executed earlier.
419 @param aTransformSequence
420 The list of ordered transforms, where transforms with smaller
421 index are executed earlier.
423 @leave KErrNoMemory Out of memory.
425 EXPORT_C void CCamera::CCameraImageProcessing::SetActiveTransformSequenceL(RArray<TUid>& aTransformSequence)
427 iImpl->SetActiveTransformSequenceL(aTransformSequence);
431 Set the source rectangle for KUidECamEventImageProcessingTransformScale or
432 KUidECamEventImageProcessingTransformCrop.
433 The coordinates should fall within the current image rectangle. The result
434 is always a logical AND operation between the two rectangles.
437 a reference to TRect object which describes the coordinates of the
440 EXPORT_C void CCamera::CCameraImageProcessing::SetSourceRect(const TRect& aRect)
442 iImpl->SetSourceRect(aRect);
446 Get the source rectangle for KUidECamEventImageProcessingTransformScale or
447 KUidECamEventImageProcessingTransformCrop.
448 The coordinates should fall within the current image rectangle. The result
449 is always a logical AND operation between the two rectangles.
452 a reference to TRect object to hold the current source rectangle
453 coordinates. If it has not been set, the coordinates match these of
456 EXPORT_C void CCamera::CCameraImageProcessing::GetSourceRect(TRect& aRect) const
458 iImpl->GetSourceRect(aRect);
463 Retrieves the maximum number of simultaneous color swapping possible.
465 @param aConcurrentColorSwappingSupported
466 Retrieves the number of simultaneous color swapping supported.
467 Retrieves 0 when swapping feature is not supported.
469 @leave May leave as a result of some error.
472 EXPORT_C void CCamera::CCameraImageProcessing::GetConcurrentColorSwappingsSupportedL(TInt& aConcurrentColorSwappingSupported) const
476 iImpl2->GetConcurrentColorSwappingsSupportedL(aConcurrentColorSwappingSupported);
480 User::Leave(KErrNotSupported);
485 Retrieves the color swapping capabilites per entry, if different entries have different capabilities
486 otherwise the same capabilities retrieved for a particular entry can be assumed to be valid for every entry
489 This is a value from 0 to numOfSimultaneousColorSwappings -1. Color swapping capabilities specific to
490 a particular entry are retrieved. If uniform capability exists for every entry, then this method need not
493 @param aColorSwapCapabilities
494 This retrieves the color swap capabilities.
496 @leave May leave as a result of some error.
499 EXPORT_C void CCamera::CCameraImageProcessing::GetColorSwapCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorSwapCapabilities) const
503 iImpl2->GetColorSwapCapabilitiesL(aIndex, aColorSwapCapabilities);
507 User::Leave(KErrNotSupported);
512 Set the color swap entries
515 This is a value from 0 to numOfSimultaneousColorSwappings -1. This helps in managing the limited no. of
516 simultaneous color swaps. If parameters are already set for the given entry, then it's up to the implementation
517 to replace the existing one or discard it.
519 @param aColorSwapParameters
520 The parameters necessary to define clearly the color swapping operation for the given entry.
521 iEntryStatus has to be updated by the implementation as per the result of the setting operation.
522 So, iEntryStatus value is redundant at this point.
524 @leave KErrNotSupported if implementation is not present.
526 @note Triggers KUidECamEventCIPSetColorSwapEntry to all MCameraObserver2 clients of the camera.
527 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should
528 be used in order to provide the entry no. of the color being set.
531 EXPORT_C void CCamera::CCameraImageProcessing::SetColorSwapEntryL(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters)
535 iImpl2->SetColorSwapEntry(aIndex, aColorSwapParameters);
539 User::Leave(KErrNotSupported);
544 Removes the color swap entry corresponding to the given index
547 This gives the color swapping entry to be removed.
549 @leave KErrNotSupported if implementation is not present.
551 @note Triggers KUidECamEventCIPRemoveColorSwapEntry to all MCameraObserver2 clients of the camera.
552 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
553 used in order to provide the entry no. of the color being removed.
556 EXPORT_C void CCamera::CCameraImageProcessing::RemoveColorSwapEntryL(TInt aIndex)
560 iImpl2->RemoveColorSwapEntry(aIndex);
564 User::Leave(KErrNotSupported);
569 Get the details of the color swap entry corresponding to the given index
572 This gives the color swapping entry whose information has to be retrieved.
574 @param aColorSwapParameters
575 This contains the parameters currently being used by the color swapping operation for the given entry.
577 @leave May leave as a result of some error.
580 EXPORT_C void CCamera::CCameraImageProcessing::GetColorSwapEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const
584 iImpl2->GetColorSwapEntryL(aIndex, aColorSwapParameters);
588 User::Leave(KErrNotSupported);
593 Starts the color swapping process after taking into account the color swap entries updated up to this point.
595 @leave KErrNotSupported if implementation is not present.
597 @note Triggers KUidECamEventCIPStartColorSwap to all MCameraObserver2 clients of the camera.
598 HandleEvent is used to report the result or any possible error.
599 One possible error case is when more than one entry describe the same color source.
600 New ecam error KErrECamColorOperationConflict used in such a case.
603 EXPORT_C void CCamera::CCameraImageProcessing::StartColorSwappingL()
607 iImpl2->StartColorSwapping();
611 User::Leave(KErrNotSupported);
616 Cancel the color swapping process.
618 @leave May leave as a result of some error.
620 @note Used to cancel the color swapping process which might have been just started.
621 If the issued StartColorSwappingL() gets cancelled, its event should report KErrCancel.
624 EXPORT_C void CCamera::CCameraImageProcessing::CancelColorSwappingL()
628 iImpl2->CancelColorSwappingL();
632 User::Leave(KErrNotSupported);
637 Retrieves the maximum number of color entries on which simultaneous color accent process is possible.
639 @param aConcurrentColorAccentSupported
640 Retrieves the number of color entries on which simultaneous color accent process is possible.
641 Retrieves 0 when color accent process is not supported.
643 @leave May leave as a result of some error.
646 EXPORT_C void CCamera::CCameraImageProcessing::GetConcurrentColorAccentSupportedL(TInt& aConcurrentColorAccentSupported) const
650 iImpl2->GetConcurrentColorAccentSupportedL(aConcurrentColorAccentSupported);
654 User::Leave(KErrNotSupported);
659 Retrieves the color accent capabilites per entry, if different entries have different capabilities
660 otherwise the same capabilities retrieved for a particular entry can be assumed to be valid for every entry
663 This is a value from 0 to numOfSimultaneousColorAccent -1. Color accent capabilities specific to
664 a particular entry are retrieved. If uniform capability exists for every entry, then this method need not
667 @param aColorAccentCapabilities
668 This retrieves the color accent capabilities.
670 @leave May leave as a result of some error.
673 EXPORT_C void CCamera::CCameraImageProcessing::GetColorAccentCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorAccentCapabilities) const
677 iImpl2->GetColorAccentCapabilitiesL(aIndex, aColorAccentCapabilities);
681 User::Leave(KErrNotSupported);
686 Set the color accent entries
689 This is a value from 0 to numOfSimultaneousColorAccent -1. This helps in managing the limited no. of
690 simultaneous color accent. If parameters are already set for the given entry, then it's up to the implementation
691 to replace the existing one or discard it.
693 @param aColorAccentParameters
694 The parameters necessary to define clearly the color accent operation for the given entry.
695 iEntryStatus has to be updated by the implementation as per the result of the setting operation.
696 So, iEntryStatus value is redundant at this point. The parameters defined for target colors in
697 TColorOperationEntry are redundant for color accent.
699 @leave KErrNotSupported if implementation is not present.
701 @note Triggers KUidECamEventCIPSetColorAccentEntry to all MCameraObserver2 clients of the camera.
702 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
703 used in order to provide the entry no. of the color being set.
706 EXPORT_C void CCamera::CCameraImageProcessing::SetColorAccentEntryL(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters)
710 iImpl2->SetColorAccentEntry(aIndex, aColorAccentParameters);
714 User::Leave(KErrNotSupported);
719 Removes the color accent entry corresponding to the given index
722 This gives the color accent entry to be removed.
724 @leave KErrNotSupported if implementation is not present.
726 @note Triggers KUidECamEventCIPRemoveColorAccentEntry to all MCameraObserver2 clients of the camera.
727 HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
728 used in order to provide the entry no. of the color being removed.
731 EXPORT_C void CCamera::CCameraImageProcessing::RemoveColorAccentEntryL(TInt aIndex)
735 iImpl2->RemoveColorAccentEntry(aIndex);
739 User::Leave(KErrNotSupported);
744 Get the details of the color accent entry corresponding to the given index
747 This gives the color accent entry whose information has to be retrieved.
749 @param aColorAccentParameters
750 This contains the parameters currently being used by the color accent operation for the given entry.
751 The parameters defined for target colors in TColorOperationEntry are redundant for color accent.
753 @leave May leave as a result of some error.
756 EXPORT_C void CCamera::CCameraImageProcessing::GetColorAccentEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const
760 iImpl2->GetColorAccentEntryL(aIndex, aColorAccentParameters);
764 User::Leave(KErrNotSupported);
769 Starts the color accent process after taking into account the color accent entries updated up to this point.
771 @leave KErrNotSupported if implementation is not present.
773 @note Triggers KUidECamEventCIPStartColorAccent to all MCameraObserver2 clients of the camera.
774 HandleEvent is used to report the result or any possible error.
777 EXPORT_C void CCamera::CCameraImageProcessing::StartColorAccentL()
781 iImpl2->StartColorAccent();
785 User::Leave(KErrNotSupported);
790 Cancel the color accent process.
792 @leave May leave as a result of some error.
794 @note Used to cancel the color accent process which might have been just started.
795 If the issued StartColorAccentL() gets cancelled, its event should report KErrCancel.
798 EXPORT_C void CCamera::CCameraImageProcessing::CancelColorAccentL()
802 iImpl2->CancelColorAccentL();
806 User::Leave(KErrNotSupported);
811 Retrieves the supported options for a particular orientation reference.
813 @param aOrientationReference
814 A TOrientationReference for which supported relative custom orientation have to retrieved.
816 @param aSupportedRelativeRotation
817 A bitfield which retrieves the supported TRelativeRotation for 'aOrientationReference'
819 @param aSupportedRelativeMirroring
820 A bitfield which retrieves the supported TRelativeMirror for 'aOrientationReference'
822 @param aSupportedRelativeFlipping
823 A bitfield which retrieves the supported TRelativeFlipping for 'aOrientationReference'
825 @leave May leave with any error code.
830 EXPORT_C void CCamera::CCameraImageProcessing::GetSupportedRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference aOrientationReference,
831 TUint& aSupportedRelativeRotation, TUint& aSupportedRelativeMirroring, TUint& aSupportedRelativeFlipping) const
835 iImpl3->GetSupportedRelativeOrientationOptionsL(aOrientationReference, aSupportedRelativeRotation,
836 aSupportedRelativeMirroring, aSupportedRelativeFlipping);
840 User::Leave(KErrNotSupported);
845 Retrieves the options which is being used for the current orientation reference.
847 @param aOrientationReference
848 A TOrientationReference which is the current orientation reference being used.
850 @param aRelativeRotation
851 A TRelativeRotation which is the current relative rotation being used with aOrientationReference.
853 @param aRelativeMirror
854 A TRelativeMirror which is the current relative mirroring being used with aOrientationReference.
856 @param aRelativeFlipping
857 A TRelativeFlipping which is the current relative flipping being used with aOrientationReference.
859 @leave May leave with any error code.
864 EXPORT_C void CCamera::CCameraImageProcessing::GetCurrentRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference& aOrientationReference,
865 CCamera::CCameraImageProcessing::TRelativeRotation& aRelativeRotation,
866 CCamera::CCameraImageProcessing::TRelativeMirror& aRelativeMirror,
867 CCamera::CCameraImageProcessing::TRelativeFlipping& aRelativeFlipping) const
871 iImpl3->GetCurrentRelativeOrientationOptionsL(aOrientationReference, aRelativeRotation, aRelativeMirror, aRelativeFlipping);
875 User::Leave(KErrNotSupported);
880 Sets the options which would be used with the desired orientation reference.
882 @param aOrientationReference
883 The desired TOrientationReference.
885 @param aRelativeRotation
886 The desired TRelativeRotation which would be used with 'aOrientationReference'.
888 @param TRelativeMirror
889 The desired TRelativeMirror which would be used with 'aOrientationReference'
891 @param TRelativeFlipping
892 The desired TRelativeFlipping which would be used with 'aOrientationReference'
894 @leave KErrNotSupported if the implementation of this method is not present.
896 @note Event KUidECamEventImageProcessingTransformRelativeOrientation is used to notify clients about relative
897 custom orientation setting operation.
899 @note If the current picture orientation (Refer CCamera::CCameraAdvancedSettings::TPictureOrientation) is not possible
900 to be achieved with the relative custom orientation, event KUidECamEventPictureOrientationUnachievable will be
901 notified to the client.
903 @note If the dimension of the image gets changed by the desired relative orientation options, notification
904 KUidECamEventCameraSettingImageSize will be notified to the client.
909 EXPORT_C void CCamera::CCameraImageProcessing::SetRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference aOrientationReference,
910 CCamera::CCameraImageProcessing::TRelativeRotation aRelativeRotation,
911 CCamera::CCameraImageProcessing::TRelativeMirror aRelativeMirror,
912 CCamera::CCameraImageProcessing::TRelativeFlipping aRelativeFlipping)
916 iImpl3->SetRelativeOrientationOptions(aOrientationReference, aRelativeRotation, aRelativeMirror, aRelativeFlipping);
920 User::Leave(KErrNotSupported);
925 Constructor for the TColorOperationCapabilities class.
926 Sets the size and version of this class.
928 EXPORT_C CCamera::CCameraImageProcessing::TColorOperationCapabilities::TColorOperationCapabilities()
930 iSize = sizeof(CCamera::CCameraImageProcessing::TColorOperationCapabilities);
931 iVersion = KECamColorOperationCapabilitiesCurrentVersion;
935 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
936 Intended to be used for implementation of methods where this class reference is passed as function arguments.
937 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
938 is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
939 the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
940 properly handled if the derived class variables handling is done in a proper 'if-else' statement.
942 @return The size of the class.
944 @note The size will be modified when the T-class gets updated.
946 EXPORT_C TInt CCamera::CCameraImageProcessing::TColorOperationCapabilities::Size() const
948 return static_cast<TInt>(iSize);
952 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
953 members get used at a later stage.
955 @return The version of this class.
957 @note The version will be modified when the T-class gets updated.
959 EXPORT_C TUint CCamera::CCameraImageProcessing::TColorOperationCapabilities::Version() const
965 Constructor for the TBitsIgnore class.
966 Sets the size and version of this class.
968 EXPORT_C CCamera::CCameraImageProcessing::TBitsIgnore::TBitsIgnore()
970 iSize = sizeof(CCamera::CCameraImageProcessing::TBitsIgnore);
971 iVersion = KECamBitsIgnoreCurrentVersion;
973 iGreenBitsIgnore = 0;
975 iAlphaBitsIgnore = 0;
979 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
980 Intended to be used for implementation of methods where this class reference is passed as function arguments.
981 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
982 is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
983 the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
984 properly handled if the derived class variables handling is done in a proper 'if-else' statement.
986 @return The size of the class.
988 @note The size will be modified when the T-class gets updated.
990 EXPORT_C TInt CCamera::CCameraImageProcessing::TBitsIgnore::Size() const
992 return static_cast<TInt>(iSize);
996 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
997 members get used at a later stage.
999 @return The version of this class.
1001 @note The version will be modified when the T-class gets updated.
1003 EXPORT_C TUint CCamera::CCameraImageProcessing::TBitsIgnore::Version() const
1009 Constructor for the TColorOperationEntry class.
1010 Sets the size and version of this class.
1012 EXPORT_C CCamera::CCameraImageProcessing::TColorOperationEntry::TColorOperationEntry()
1014 iSize = sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry);
1015 iVersion = KECamColorOperationEntryCurrentVersion;
1019 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
1020 Intended to be used for implementation of methods where this class reference is passed as function arguments.
1021 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
1022 is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
1023 the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
1024 properly handled if the derived class variables handling is done in a proper 'if-else' statement.
1026 @return The size of the class.
1028 @note The size will be modified when the T-class gets updated.
1030 EXPORT_C TInt CCamera::CCameraImageProcessing::TColorOperationEntry::Size() const
1032 return static_cast<TInt>(iSize);
1036 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
1037 members get used at a later stage.
1039 @return The version of this class.
1041 @note The version will be modified when the T-class gets updated.
1043 EXPORT_C TUint CCamera::CCameraImageProcessing::TColorOperationEntry::Version() const