sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: #ifndef ECAMCAPTURECONTROLINTF_H sl@0: #define ECAMCAPTURECONTROLINTF_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class MImplementationFactory; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraPreImageCaptureControl, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraPreImageCaptureControlUid = {KECamMCameraPreImageCaptureControlUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraImageCapture, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraImageCaptureUid = {KECamMCameraImageCaptureUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraPostImageCaptureControl, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraPostImageCaptureControlUid = {KECamMCameraPostImageCaptureControlUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraVideoCaptureControl, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraVideoCaptureControlUid = {KECamMCameraVideoCaptureControlUidValue}; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of the PreImageCaptureControl Camera Extension API. sl@0: PreImageCaptureControl class exposes an API for controlling advanced still image related settings and control prior sl@0: to capturing the images. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraPreImageCaptureControl sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: The observer for the pre image capture control is passed to the implementation for passing callbacks on it. sl@0: sl@0: @param aPreImageCaptureControlObserver sl@0: The reference to the pre image capture control observer. sl@0: */ sl@0: virtual void SetPreImageCaptureControlObserver(MPreImageCaptureControlObserver& aPreImageCaptureControlObserver)=0; sl@0: sl@0: /** sl@0: Retrieves information regarding the direct snapshot feature support. Direct Snapshot, if supported, can be created sl@0: out of version2 direct viewfinder object only. sl@0: sl@0: @param aDirectSnapshotSupportInfo sl@0: This is a bit field providing supported direct snapshot of type TDirectSnapshotType sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetDirectSnapshotSupportInfoL(TUint& aDirectSnapshotSupportInfo) const=0; sl@0: sl@0: /** sl@0: Retrieves the settings supported for embedded still captures. Possibilty exists that not all the settings supported for sl@0: normal still image captures are supported for embedded still captures as well. sl@0: sl@0: @param aSupportedEmbeddedStillCaptureSettings sl@0: Array of TUid which retrieves the supported embedded still captures. Empty list indicated that no settings are sl@0: supported for embedded still captures. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetSupportedEmbeddedStillCaptureSettingsL(RArray& aSupportedEmbeddedStillCaptureSettings) const=0; sl@0: sl@0: /** sl@0: Retrieves information regarding the supported direct saving state. If used, still images are saved in files rather than sl@0: providing clients the MCameraImageBuffer. Direct saving to file will continue even if the client application gets closed sl@0: for any reasons. sl@0: sl@0: @param aSupportedDirectSavingType sl@0: Retrieves the enum specifying supported TDirectSavingType. sl@0: If EDirectSavingNotUsed, direct saving not supported. Images will be received in buffer MCameraImageBuffer. sl@0: sl@0: If EDirectSavingHighResolutionFileOnly, direct saving to file is supported. But no cut down version of the image sl@0: will be saved to file. Callback used is MCaptureImageObserver::ImageDirectSavingCompleted(). sl@0: sl@0: If EDirectSavingWithLowerResolutionFile, Direct saving to file is supported. Also, a cut down version of the image sl@0: will be saved to another specified file. Callbacks used are MCaptureImageObserver::ImageDirectSavingCompleted() sl@0: for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() for lower resolution image. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetSupportedDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType& aSupportedDirectSavingType) const=0; sl@0: sl@0: /** sl@0: Provides the base name for file used to save images. If there are sequential images, files will be created by sl@0: implementation with names appearing as base name and appended by increasing integers which would start from sl@0: aStartingSequenceNumber. This is used for the original image only, but not for the cut down version of the original sl@0: image. sl@0: sl@0: @param aFilename sl@0: A const TDesC8&: Base name for files which ECam implementation needs to create in order to collect every sequential sl@0: image. sl@0: sl@0: @param aStartingSequenceNumber sl@0: The starting sequence number which will be appended to the base name 'aFilename'. The sequence number will keep sl@0: on increasing for every individual still image capture. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note It is upto the implementation how many digits it uses for sequence number. Accordingly, padding will be done with sl@0: zeroes. sl@0: */ sl@0: virtual void SetSequentialImageFilenameL(const TDesC8& aFilename, TInt aStartingSequenceNumber)=0; sl@0: sl@0: /** sl@0: Provides the base name for file used to save cut down version of the original images. If there are sequential images, sl@0: files will be created by implementation with names appearing as base name and appended by increasing integers which would sl@0: start from aStartingSequenceNumber. This is used for the cut down version of the original image. sl@0: sl@0: @param aLowerResolutionFilename sl@0: A const TDesC8&: Base name for files which ECam implementation needs to create in order to collect the cut down version sl@0: of every sequential image. sl@0: sl@0: @param aStartingSequenceNumber sl@0: The starting sequence number which will be appended to the base name 'aFilename'. The sequence number will keep sl@0: on increasing for every individual still image capture. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note It is upto the implementation how many digits it uses for sequence number. Accordingly, padding will be done with sl@0: zeroes. sl@0: */ sl@0: virtual void SetLowerResolutionSequentialImageFilenameL(const TDesC8& aLowerResolutionFilename, TInt aStartingSequenceNumber)=0; sl@0: sl@0: /** sl@0: Retrieves the type of direct saving currently used. This will be represented as a direct saving state as given by sl@0: TDirectSavingType. sl@0: sl@0: Whether or not the direct saving option is used, client will receive the MCaptureImageObserver::ImageCaptureComplete() sl@0: callback to mark the completion of the image capture operation. sl@0: sl@0: @param aDirectSavingType sl@0: Current type of the direct saving. sl@0: sl@0: If EDirectSavingNotUsed, direct saving is not used. Images will be received in buffer MCameraImageBuffer through sl@0: callback MCaptureImageObserver::ImageBufferReady(). sl@0: sl@0: If EDirectSavingHighResolutionFileOnly, direct saving to file option is currently used. But no cut down version of sl@0: the image will be saved to file. Callback used is MCaptureImageObserver::ImageDirectSavingCompleted(). sl@0: sl@0: If EDirectSavingWithLowerResolutionFile, apart from direct saving to file option for the actual image, a cut down sl@0: version of the image will be saved to another specified file. Callbacks used are MCaptureImageObserver:: sl@0: ImageDirectSavingCompleted() for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() sl@0: for lower resolution image. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note Direct saving to file will continue even if the client application gets closed for any reasons. sl@0: */ sl@0: virtual void GetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType& aDirectSavingType) const=0; sl@0: sl@0: /** sl@0: Instructs the ECam implementation to use the desired type of direct saving option as specifed by its state. sl@0: sl@0: Whether or not the direct saving option is used, client will receive the MCaptureImageObserver::ImageCaptureComplete() sl@0: callback to mark the completion of the image capture operation. sl@0: sl@0: @param aDirectSavingType sl@0: The desired type of the direct saving. sl@0: sl@0: If EDirectSavingNotUsed, direct saving will not be used. Images will be received in buffer MCameraImageBuffer sl@0: through callback MCaptureImageObserver::ImageBufferReady(). sl@0: sl@0: If EDirectSavingHighResolutionFileOnly, direct saving to file option will be used. But no cut down version of sl@0: the image will be saved to file. Callback to be used is MCaptureImageObserver::ImageDirectSavingCompleted(). sl@0: sl@0: If EDirectSavingWithLowerResolutionFile, apart from direct saving to file option for the actual image, a cut down sl@0: version of the image will be saved to another specified file. Callbacks to be used are MCaptureImageObserver:: sl@0: ImageDirectSavingCompleted() for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() sl@0: for lower resolution image. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note Clients need to provide the filename before capturing still images under direct saving option. Callback sl@0: MCaptureImageObserver::ImageDirectSavingCompleted() may provide error KErrNotReady if filenames are not sl@0: provided before images are captured for direct saving. Similarly, if cut down version of image is also to be sl@0: saved to file, MCaptureImageObserver::CutDownImageDirectSavingCompleted() may provide error KErrNotReady if sl@0: filenames are not provided before hand. sl@0: sl@0: @note Direct saving to file will continue even if the client application gets closed for any reasons. sl@0: */ sl@0: virtual void SetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType aDirectSavingType)=0; sl@0: sl@0: /** sl@0: Retrieves whether the camera device is capable of providing capture event notification to the client. Client may take sl@0: the responsibility of playing the capture sound after receiving the notification. sl@0: sl@0: @param aSupportedDriveModes sl@0: A reference to bit-field of TUint which indicates the drive modes in which the capture event notification is sl@0: supported. If aSupportedDriveModes =0, capture event notification is not supported. sl@0: sl@0: @note If capture event notification is supported, ECam implementation will use KUidECamEventImageCaptureEvent to notify sl@0: clients that the image has been exposed to the camera sensor. Clients may play capture sound if they desire to do so. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @see CCamera::CCameraAdvancedSettings::TDriveMode sl@0: */ sl@0: virtual void GetCaptureEventSupportInfoL(TUint& aSupportedDriveModes) const=0; sl@0: sl@0: /** sl@0: Retrieves the supported image formats for a given resolution. sl@0: sl@0: @param aImageFormatsSupported sl@0: A bit field which retrieves the supported image formats for a given resolution. sl@0: Formats have been defined as CCamera::TFormat sl@0: sl@0: @param aSize sl@0: The resolution (or size) for which the total number of supported image formats have to be retrieved. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageFormatsSupportedL(TUint& aImageFormatsSupported, const TSize& aSize) const=0; sl@0: sl@0: /** sl@0: Retrieves the supported pixel aspect ratio for a given resolution in case of still image. sl@0: sl@0: @param aPixelAspectsSupported sl@0: A bit field which retrieves the supported pixel aspect ratio for a given resolution. sl@0: Pixel aspect ratio have been defined as CCamera::CCameraAdvancedSettings::TPixelAspectRatio sl@0: sl@0: @param aImageFormat sl@0: The image format for which the supported pixel aspect ratio have to be retrieved. sl@0: sl@0: @param aSize sl@0: The resolution (or size) for which the supported pixel aspect ratio have to be retrieved. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aImageFormat, const TSize& aSize) const=0; sl@0: sl@0: /** sl@0: Performs setup and allocation of memory for image capture operation. Implementation creates a new CCameraImageCapture* sl@0: object which reflects the prepare image parameters passed by the client. The callback MPreImageCaptureControlObserver:: sl@0: PrepareImageComplete() passes the ownership of the CCameraImageCapture* object to the client. sl@0: sl@0: This needs to be called every time client wishes to change prepare image parameters or if the client wishes to create sl@0: a new CCameraImageCapture* object. sl@0: sl@0: @param aPrepareImageParameters sl@0: The desired image parameters to be used for capturing still images using the CCameraImageCapture instance sl@0: which would be passed by the implementation. sl@0: sl@0: @param aCaptureImageObserver sl@0: The Capture image observer which is needed by the implementation in order to pass it to the sl@0: CCameraImageCapture while creating it. sl@0: sl@0: @note Next PrepareImageCapture can be called only after receiving the notification KUidECamEventReadyForNextPrepare. sl@0: sl@0: @note Implementation will call CCameraImageCapture::CreateL(CCamera& aCamera, MCaptureImageObserver& sl@0: aCaptureImageObserver) method and pass the CCameraImageCapture* to the client through the sl@0: MPreImageCaptureControlObserver::PrepareImageComplete() callback. sl@0: sl@0: @note If drive mode is EDriveModeTimeNudgeCapture the ECam implementation will immediately begin capturing images after sl@0: creating a new CCameraImageCapture object. Once the client initiates image capture, the total amount of images sl@0: requested by the client (specified by the client in TDriveModeDependentAttributes) will be returned to the client sl@0: (via MCaptureImageObserver::ImageBufferReady()) or saved to file. The implementation should not create another sl@0: instance of CCameraImageCapture whilst using this drive mode until the first instance is destroyed by the client. sl@0: sl@0: @see CCamera::PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex) sl@0: */ sl@0: virtual void PrepareImageCapture(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& sl@0: aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver)=0; sl@0: sl@0: /** sl@0: Informs whether or not the setting of maximum memory size when encoding to the current format is supported. sl@0: sl@0: @param aIsImageMaxMemorySizeSettingSupported sl@0: ETrue indicates that setting of maximum memory size is supported. sl@0: EFalse indicates that setting of maximum memory size is not supported. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageMaxMemorySizeSettingSupportInfoL(TBool& aIsImageMaxMemorySizeSettingSupported) const=0; sl@0: sl@0: /** sl@0: Get the maximum memory size in kilo bytes when encoding to the current format. sl@0: sl@0: @param aMemorySize sl@0: Retrieves the maximum memory size in kilo bytes. sl@0: sl@0: @note In case of JPEG, the maximum memory size will take preference over JPEG quality if the maximum memory size is sl@0: not sufficient to achieve the desired quality. Refer CCamera::JpegQuality() sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageMaxMemorySizeL(TUint& aMemorySize) const=0; sl@0: sl@0: /** sl@0: Retrieves the supported processing options. sl@0: sl@0: @param aEcamProcessingOptionsSupported sl@0: Bitfield containing the available processing options. sl@0: sl@0: @leave May leave with error code. sl@0: */ sl@0: virtual void GetSupportedProcessingOptionsL(TUint& aEcamProcessingOptionsSupported) const=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of the ImageCapture Camera Extension API. sl@0: CameraImageCapture class exposes an API for capturing the image and controlling the overall capture. sl@0: sl@0: This class also provides concrete implementation of API exposed by CCameraPostImageCaptureControl. sl@0: CameraPostImageCaptureControl class exposes an API for retrieving the image data from individual images (in case sl@0: continuous drive mode is used for capturing the images) and also to apply control on the captured images individually. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraImageCapture sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: sl@0: @param aCameraImageCapture sl@0: The pointer to the image capture class object which would be destroyed by the client. sl@0: */ sl@0: virtual void Release(CCamera::CCameraImageCapture* aCameraImageCapture)=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the histogram implementation in order to use it specifically for a sl@0: specific still image capture. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the histogram implementation specific to the still image capture. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the snapshot implementation in order to sl@0: use it specifically for a specific still image capture. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the snapshot implementation specific to the still image capture. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetSnapshotImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the image processing implementation in order to use it specifically for sl@0: a specific still image capture. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the image processing implementation specific to the still image capture. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: The observer for the image capture is passed to the implementation for passing callbacks on it. sl@0: sl@0: @param aCaptureImageObserver sl@0: The reference to the capture image observer. sl@0: */ sl@0: virtual void SetCaptureImageObserver(MCaptureImageObserver& aCaptureImageObserver)=0; sl@0: sl@0: /** sl@0: Retrieves the prepare image parameters tied with this image capture class object. sl@0: sl@0: @param aPrepareImageParameters sl@0: TPrepareImageParameters tied with this image capture class object. sl@0: sl@0: @leave May leave with any error code sl@0: */ sl@0: virtual void GetPrepareImageParametersL(CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters) const=0; sl@0: sl@0: /** sl@0: The prepare image parameters needed to capture images using the particular capture image class object. sl@0: sl@0: @param aPrepareImageParameters sl@0: The prepare image parameters used to capture images. sl@0: */ sl@0: virtual void SetPrepareImageParameters(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters)=0; sl@0: sl@0: /** sl@0: Provides the interface pointers for the concrete implementation of CCameraPostImageCaptureControl. sl@0: Every time this method is called, a newly created interface is provided since it represents the individual image. sl@0: The ID maps the individual image with the CCameraPostImageCaptureControl instance and may also be stored by the sl@0: concrete implementation of CCameraPostImageCaptureControl. sl@0: sl@0: @param aInterface sl@0: The uid representing the interface required. sl@0: sl@0: @param aPostCaptureControlId sl@0: The ID which maps the individual image with the CCameraPostImageCaptureControl object. This may be stored sl@0: by the concrete implementation of CCameraPostImageCaptureControl. sl@0: sl@0: @return Interface pointer. sl@0: sl@0: @note It is this implementation which creates/owns CCameraPostImageCaptureControl class object after receiving image sl@0: capture requests by the client. Implementation may store all such mappings between aPostCaptureControlId and sl@0: CCameraPostImageCaptureControl* for a particular instance of CCameraImageCapture. sl@0: */ sl@0: virtual TAny* CreatePostImageCaptureControlImpl(TUid aInterface, TPostCaptureControlId aPostCaptureControlId)=0; sl@0: sl@0: /** sl@0: Performant image capture. This postpones the processing options involved with current image captured in order to sl@0: capture/prepare for next images. sl@0: sl@0: Previously created CCameraPostImageCaptureControl objects for this CCameraImageCapture object will become unavailable sl@0: after this call. sl@0: sl@0: @param aCameraImageCapture sl@0: Pointer to aCameraImageCapture. This will be used by the implementation in order to pass in callbacks and to sl@0: create CCameraPostImageCaptureControl object for every image and pass it to the client. Implementation is not sl@0: supposed to not destroy this object. sl@0: sl@0: @note Further images (either still or video) can be captured only after receiving the notification sl@0: KUidECamEventReadyForNextCapture. Current image may be outstanding in order to undergo any processing options. sl@0: sl@0: @note Callback MCaptureImageObserver::ImageCaptureComplete() informs the client that the image capture operation has sl@0: been completed. The CCameraImageCapture& can be further used for next image captures. sl@0: In case of continuous drive modes, this callback will be received by the client only once in order to provide the sl@0: result of the whole image capture operation. sl@0: sl@0: @note Callback MCaptureImageObserver::ImageBufferReady() provides client the link to CCameraPostImageCaptureControl& sl@0: which helps retrieving the image buffer. In case of continuous drive modes, this callback will be received by the sl@0: client for every individual image. In case of single shots, this will be received by the client only once in sl@0: order to retrieve the image buffer. sl@0: */ sl@0: virtual void CaptureImage(CCamera::CCameraImageCapture* aCameraImageCapture)=0; sl@0: sl@0: /** sl@0: Cancels the outstanding Capture Image operation. This will also cancel any outstanding processing options associated sl@0: with the concerned Capture Image operation. This method is synchronous. Hence, no callback shall be issued for the sl@0: concerned capture image operation. sl@0: */ sl@0: virtual void CancelCaptureImage()=0; sl@0: sl@0: /** sl@0: Retrieves the number of images exposed to sensor with respect to a specific image capture command. Any Processing sl@0: options associated with these images may be pending. sl@0: sl@0: @param aNumImagesExposed sl@0: Retrieves the number of images exposed to sensor till now. For single shot type of drive modes, this value will sl@0: be one after the image gets exposed to sensor. For multiple shot type of drive modes, this value will be the sl@0: number of images exposed till now. sl@0: sl@0: @note May leave with any error code. sl@0: */ sl@0: virtual void GetNumImagesExposedL(TUint& aNumImagesExposed) const=0; sl@0: sl@0: /** sl@0: Retrieves the total number of images which is supposed to be captured with respect to a specific image capture command. sl@0: sl@0: @param aNumTotalImages sl@0: Retrieves the total number of images supposed to be captured. For single shot type of drive modes, this value sl@0: will be always be one. For multiple shot type of drive modes, this value will be greater than one. sl@0: sl@0: @note May leave with any error code. sl@0: */ sl@0: virtual void GetNumTotalImagesL(TUint& aNumTotalImages) const=0; sl@0: sl@0: /** sl@0: Retrieves the post capture control handle based on the ID passed to it. Client may use this handle for post capture sl@0: operations of the image identified by the ID. The ID is received by the clients through MCaptureImageObserver callbacks. sl@0: sl@0: @param aPostCaptureControlHandle sl@0: Retrieves pointer to the post capture control class object. sl@0: sl@0: @param aPostCaptureControlId sl@0: The ID used to retrieve the post capture control handle of the captured image. sl@0: sl@0: @note May leave with any error code. sl@0: sl@0: @note It is this implementation which creates/owns CCameraPostImageCaptureControl class object after receiving image sl@0: capture requests by the client. Implementation may store all such mappings between aPostCaptureControlId and sl@0: CCameraPostImageCaptureControl* for a particular instance of CCameraImageCapture. sl@0: */ sl@0: virtual void GetPostCaptureControlHandleL(CCamera::CCameraPostImageCaptureControl*& aPostCaptureControlHandle, sl@0: TPostCaptureControlId aPostCaptureControlId) const=0; sl@0: /** sl@0: Prioritises the Capture Image operation. This implies that the processing options associated with the concerned sl@0: Capture Image operation will be prioritised over other pending processing options. sl@0: sl@0: @param aCaptureImagePriority sl@0: The desired level of priority. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void SetCaptureImagePriorityL(TECamImagePriority aCaptureImagePriority)=0; sl@0: sl@0: /** sl@0: Retrieves the priority of the Capture Image operation. sl@0: sl@0: @param aCaptureImagePriority sl@0: Retrieves the current level of priority. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetCaptureImagePriorityL(TECamImagePriority& aCaptureImagePriority) const=0; sl@0: sl@0: /** sl@0: Pauses processing options associated with the concerned Capture Image operation. sl@0: sl@0: @param aProcessingTypes sl@0: The processing options which need to be paused. sl@0: */ sl@0: virtual void PauseProcessing(TUint aProcessingTypes)=0; sl@0: sl@0: /** sl@0: Resumes processing options associated with the concerned Capture Image operation. sl@0: sl@0: @param aProcessingTypes sl@0: The processing options which need to be resumed. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void ResumeProcessingL(TUint aProcessingTypes)=0; sl@0: }; sl@0: sl@0: /** sl@0: This mixin class provides concrete implementation of API exposed by CCameraPostImageCaptureControl. sl@0: CameraPostImageCaptureControl class exposes an API for retrieving the image data from individual images (in case sl@0: continuous drive mode is used for capturing the images) and also to apply control on the captured images individually. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraPostImageCaptureControl sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: sl@0: @param aPostCaptureControlId sl@0: The ID useful to indentify the post capture control handle of the captured image being deleted. sl@0: */ sl@0: virtual void Release(TPostCaptureControlId aPostCaptureControlId)=0; sl@0: sl@0: /** sl@0: Retrieves the sequence number of the image being represented by this post capture control object. The sequence number sl@0: specifies the index of the individual image if, in case, the multiple shot type of drive mode is being used. The first sl@0: individual image which is exposed to the sensor has a sequence number of zero. In case of single shot type of drive mode, sl@0: the sequence number will be zero. sl@0: sl@0: @param aSequenceNumber sl@0: Retrieves the sequence number of the image. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageSequenceNumberL(TUint& aSequenceNumber) const=0; sl@0: sl@0: /** sl@0: CCancels the outstanding individual image which the object of this class is referring to. This will also cancel any outstanding sl@0: processing options associated with this individual image. This method is synchronous. Hence, no callback shall be sl@0: issued for this individual image. sl@0: */ sl@0: virtual void CancelImage()=0; sl@0: sl@0: /** sl@0: Prioritises the individual image which the object of this class is referring to. This implies that any processing sl@0: options associated with this individual image will be prioritised over other pending processings options. sl@0: sl@0: @param aImagePriority sl@0: The desired level of priority. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void SetImagePriorityL(TECamImagePriority aImagePriority)=0; sl@0: sl@0: /** sl@0: Retrieves the priority of the individual image which the object of this class is referring to. sl@0: sl@0: @param aImagePriority sl@0: The current level of priority. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImagePriorityL(TECamImagePriority& aImagePriority) const=0; sl@0: sl@0: /** sl@0: Pauses processing options associated with the concerned Capture Image operation. sl@0: sl@0: @param aProcessingTypes sl@0: The processing options which need to be paused. sl@0: */ sl@0: virtual void PauseProcessing(TUint aProcessingTypes)=0; sl@0: sl@0: /** sl@0: Resumes processing options associated with the concerned Capture Image operation. sl@0: sl@0: @param aProcessingTypes sl@0: The processing options which need to be resumed. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void ResumeProcessingL(TUint aProcessingTypes)=0; sl@0: sl@0: /** sl@0: Retrieves the image buffer which contains the individual image captured. This method should be called by the client as a sl@0: result of receiving the callback MCaptureImageObserver::ImageBufferReady(), if the sl@0: error information received is satisfactory. sl@0: sl@0: @param aCameraImageBuffer sl@0: A reference to an MCameraImageBuffer if successful, or NULL if not successful. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageBufferL(MCameraImageBuffer& aCameraImageBuffer) const=0; sl@0: sl@0: /** sl@0: Retrieves the state of the individual image which the object of this class is referring to. sl@0: sl@0: @param aImageState sl@0: Retrieves the current state of the individual image. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageStateL(CCamera::CCameraPostImageCaptureControl::TImageState& aImageState) const=0; sl@0: sl@0: /** sl@0: Retrieves the state of the individual image buffer. sl@0: sl@0: @param aBufferState sl@0: Retrieves the current state of the individual image buffer. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetBufferStateL(CCamera::CCameraPostImageCaptureControl::TBufferState& aBufferState) const=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of the Video Capture Control Camera Extension API. sl@0: CCamera Video Capture Control class exposes an API for controlling advanced video capture related settings and control. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraVideoCaptureControl sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the histogram implementation in order to sl@0: use it specifically for the video capture. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the histogram implementation specific to the video capture. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the snapshot implementation in order to sl@0: use it specifically for the video capture. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the snapshot implementation specific to the video capture. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetSnapshotImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the image processing implementation in order to sl@0: use it specifically for the video capture. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the image processing implementation specific to the video capture. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: The observer for the video capture is passed to the implementation for passing callbacks on it. sl@0: sl@0: @param aCaptureVideoObserver sl@0: The reference to the capture video observer. sl@0: */ sl@0: virtual void SetCaptureVideoObserver(MCaptureVideoObserver& aCaptureVideoObserver)=0; sl@0: sl@0: /** sl@0: Retrieves the supported video formats for a given resolution. sl@0: sl@0: @param aVideoFormatsSupported sl@0: A bit field which retrieves the supported video formats for a given resolution. sl@0: Formats have been defined as CCamera::TFormat sl@0: sl@0: @param aSize sl@0: The resolution (or size) for which the total number of supported video formats have to be retrieved. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetVideoFormatsSupportedL(TUint& aVideoFormatsSupported, const TSize& aSize) const=0; sl@0: sl@0: /** sl@0: Retrieves the supported pixel aspect ratio for a given resolution in case of video. sl@0: sl@0: @param aPixelAspectsSupported sl@0: A bit field which retrieves the supported pixel aspect ratio for a given resolution. sl@0: Pixel aspect ratio have been defined as CCamera::CCameraAdvancedSettings::TPixelAspectRatio sl@0: sl@0: @param aVideoFormat sl@0: The video format for which the supported pixel aspect ratio have to be retrieved. sl@0: sl@0: @param aSize sl@0: The resolution (or size) for which the supported pixel aspect ratio have to be retrieved. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aVideoFormat, const TSize& aSize) const=0; sl@0: sl@0: /** sl@0: Informs whether or not the 'embedded still capture' feature is supported. Allowing still image capture in between sl@0: on-going video capture is referred to as embedded still capture. sl@0: sl@0: @param aSupportedEmbeddedStillCaptureTypes sl@0: Retrieves the supported embedded still capture. The TInt is retrieved as a bit field of supported sl@0: TEmbeddedStillCaptureTypes. sl@0: sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetEmbeddedStillCaptureSupportInfoL(TInt& aSupportedEmbeddedStillCaptureTypes) const=0; sl@0: sl@0: /** sl@0: Asynchronous method to prepare for video capture. sl@0: sl@0: Performs setup and allocation of memory prior to calling StartVideoCapture() sl@0: to keep the latency of that function to a minimum. sl@0: sl@0: @param aPrepareVideoParameters sl@0: Parameters necessary to prepare for video capture. sl@0: sl@0: @note Event KUidECamEventVideoCaptureControlPrepareComplete is used to notify clients about completing the preparation sl@0: for video capture. sl@0: sl@0: @note Next PrepareVideoCapture can be called only after receiving the notification KUidECamEventReadyForNextPrepare. sl@0: sl@0: @note If some camera settings get affected because of desired video settings such as frame rate/frame size, sl@0: specific notifications will be sent to the client about camera settings being affected. sl@0: sl@0: @note Event KUidECamEventVideoCaptureControlSettingsRangeChanged: informs that range of certain camera settings have been changed. sl@0: Client may call GetRangeAffectedSettingsL(RArray& aRangeAffectedSettings) const to get the list of affected camera settings. sl@0: sl@0: @note Event KUidECamEventVideoCaptureControlSettingsValueChanged: informs that value of certain camera settings have been changed. sl@0: Client may call GetValueAffectedSettingsL(RArray& aValueAffectedSettings) const to get the list of affected camera settings. sl@0: sl@0: @note Event KUidECamEventVideoCaptureControlSettingsDisabled: informs that certain camera settings have been disabled. sl@0: Client may call GetDisabledSettingsL(RArray& aDisabledSettings) const to get the list of affected camera settings. sl@0: sl@0: @see CCamera::PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer) sl@0: sl@0: @see ReleaseVideoResource() sl@0: */ sl@0: virtual void PrepareVideoCapture(const CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters)=0; sl@0: sl@0: /** sl@0: Retrieves the camera settings whose range got affected once the desired video settings (frame rate/frame size) are in place. sl@0: This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsRangeChanged. sl@0: sl@0: @param aRangeAffectedSettings sl@0: Retrieves the list of range affected settings sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters) sl@0: */ sl@0: virtual void GetRangeAffectedSettingsL(RArray& aRangeAffectedSettings) const=0; sl@0: sl@0: /** sl@0: Retrieves the camera settings whose value got affected once the desired video settings (frame rate/frame size) are in place. sl@0: This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsValueChanged. sl@0: sl@0: @param aValueAffectedSettings sl@0: Retrieves the list of value affected settings sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters) sl@0: */ sl@0: virtual void GetValueAffectedSettingsL(RArray& aValueAffectedSettings) const=0; sl@0: sl@0: /** sl@0: Retrieves the camera settings whose value got affected once the desired video settings (frame rate/frame size) are in place. sl@0: This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsDisabled. sl@0: sl@0: @param aDisabledSettings sl@0: Retrieves the list of disabled settings sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters) sl@0: */ sl@0: virtual void GetDisabledSettingsL(RArray& aDisabledSettings) const=0; sl@0: sl@0: /** sl@0: Frees the video resources which were set up as a result of CCameraVideoCaptureControl::PrepareVideoCapture call. sl@0: If this methid is called while PrepareVideoCapture call is outstanding, then this will be equivalent to cancelling the sl@0: PrepareVideoCapture call and release any allocated resources. sl@0: */ sl@0: virtual void ReleaseVideoResource()=0; sl@0: sl@0: /** sl@0: Starts the video capture. This operation gives priority to the low latency aspects. sl@0: sl@0: Video frames are send to client via MCaptureVideoObserver::VideoBufferReady(MCameraBuffer2& aVideoBuffer, TInt aErrorCode). sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note This method is recommended to be used rather than CCamera::StartVideoCaptureL(). sl@0: */ sl@0: virtual void StartVideoCaptureL()=0; sl@0: sl@0: /** sl@0: Stops the video capture. This operation gives priority to the low latency aspects. sl@0: sl@0: @note This method is recommended to be used rather than CCamera::StopVideoCapture(). sl@0: */ sl@0: virtual void StopVideoCapture()=0; sl@0: sl@0: /** sl@0: Pauses the on-going video capture. MCaptureVideoObserver::VideoBufferReady(MCameraBuffer2& aVideoBuffer, TInt aErrorCode) sl@0: callback will not be received by the client until the video capture is resumed. sl@0: */ sl@0: virtual void PauseVideoCapture()=0; sl@0: sl@0: /** sl@0: Resumes the on-going video capture. MCaptureVideoObserver::VideoBufferReady(MCameraBuffer2& aVideoBuffer, TInt aErrorCode) sl@0: callback will again be received by the client. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void ResumeVideoCaptureL()=0; sl@0: sl@0: /** sl@0: Retrieves the fading effect state for video capture. sl@0: sl@0: @param aFadingEffectState sl@0: Retrieves the current fading effect state for video capture. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: virtual void GetFadingEffectStateL(CCamera::CCameraVideoCaptureControl::TFadingEffectState& aFadingEffectState) const=0; sl@0: sl@0: /** sl@0: Sets the fading effect state for video capture. sl@0: sl@0: @param aFadingEffectState sl@0: The desired fading effect state for video capture. sl@0: sl@0: @note Triggers a KUidECamEventVideoCaptureControlFadingEffect event notification. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: virtual void SetFadingEffectState(CCamera::CCameraVideoCaptureControl::TFadingEffectState aFadingEffectState)=0; sl@0: sl@0: /** sl@0: Retrieves the current video capture state. sl@0: sl@0: @param aVideoCaptureState sl@0: Retrieves the current video capture state. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetVideoCaptureStateL(CCamera::CCameraVideoCaptureControl::TVideoCaptureState& aVideoCaptureState) const=0; sl@0: sl@0: /** sl@0: Retrieves the various types of video capture supported. sl@0: @param aSupportedVideoCaptureTypes sl@0: Retrieves the supported video capture type. The TInt is retrieved as a bit field of supported sl@0: TVideoCaptureType. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetVideoCaptureSupportInfoL(TInt& aSupportedVideoCaptureTypes) const=0; sl@0: sl@0: /** sl@0: Retrieves the current prepare video parameters. sl@0: sl@0: @param aPrepareVideoParameters sl@0: Retrieves the current prepare video parameters. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetPrepareVideoParametersL(CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters) const=0; sl@0: }; sl@0: sl@0: #endif // ECAMCAPTURECONTROLINTF_H