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: @prototype sl@0: */ sl@0: #ifndef ECAMCAPTURECONTROL_H sl@0: #define ECAMCAPTURECONTROL_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #include sl@0: #endif sl@0: sl@0: #include sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: class MCameraPreImageCaptureControl; sl@0: class MCameraImageCapture; sl@0: class MCameraPostImageCaptureControl; sl@0: class MCameraVideoCaptureControl; sl@0: sl@0: class MHistogramV2Buffer; sl@0: sl@0: /** sl@0: Special ImageMaxMemorySize when client does not have any specific preference. Also used when sl@0: this setting of maximum memory size is not supported. sl@0: */ sl@0: static const TInt KECamNoSpecificMaxMemorySize = -1; sl@0: sl@0: /** sl@0: The current Version of the TPrepareImageParameters class. sl@0: */ sl@0: static const TUint KECamPrepareImageParametersCurrentVersion = 1; sl@0: sl@0: /** sl@0: The current Version of the TPrepareVideoParameters class. sl@0: */ sl@0: static const TUint KECamPrepareVideoParametersCurrentVersion = 1; sl@0: sl@0: /** sl@0: The current Version of the TDriveModeDependentAttributes class. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUint KECamDriveModeDependentAttributesCurrentVersion = 1; sl@0: sl@0: /** sl@0: Uid used to identify the CCameraPreImageCaptureControl API. sl@0: This API is used to control the pre-imagecapture operations. sl@0: sl@0: @see CCamera::CCameraPreImageCaptureControl sl@0: */ sl@0: static const TUid KECamPreImageCaptureControlUid = {KECamPreImageCaptureControlUidValue}; sl@0: sl@0: /** sl@0: Uid used to identify the CCameraImageCapture API. sl@0: This API is used to capture the image and perform other control operations after capture the image. sl@0: sl@0: @see CCamera::CCameraImageCapture sl@0: */ sl@0: static const TUid KECamImageCaptureUid = {KECamImageCaptureUidValue}; sl@0: sl@0: /** sl@0: Uid used to identify the CCameraPostImageCaptureControl API. sl@0: This API is used to control the post-imagecapture operations. sl@0: sl@0: @see CCamera::CCameraPostImageCaptureControl sl@0: */ sl@0: static const TUid KECamPostImageCaptureControlUid = {KECamPostImageCaptureControlUidValue}; sl@0: sl@0: /** sl@0: Uid used to identify the CCamera Video Capture Control API. sl@0: This API is used to control the video capture operations. sl@0: sl@0: @see CCamera::CCameraVideoCaptureControl sl@0: */ sl@0: static const TUid KECamVideoCaptureControlUid = {KECamVideoCaptureControlUidValue}; sl@0: sl@0: /** sl@0: Notification that the camera is ready for next prepare. Next prepare can either be still or video. sl@0: @note If drive mode is EDriveModeTimeNudgeCapture this callback will only be received when the client deletes the sl@0: existing CCameraImageCapture object as more than one instance can not be created if this drive mode is used. sl@0: */ sl@0: static const TUid KUidECamEventReadyForNextPrepare = {KUidECamEventReadyForNextPrepareUidValue}; sl@0: sl@0: /** sl@0: Notification that the camera is ready for next capture. Next capture can either be still or video. sl@0: @note If drive mode is EDriveModeTimeNudgeCapture this callback will only be received once the total required amount sl@0: of images are captured (ie. pre-capture images + 1 + post-capture images) and the implementation is ready with sl@0: another set of pre-capture images (so implementation is prepared for next CaptureImage() call). sl@0: */ sl@0: static const TUid KUidECamEventReadyForNextCapture = {KUidECamEventReadyForNextCaptureUidValue}; sl@0: sl@0: /** sl@0: Notification that the image has been exposed to the sensor. sl@0: ECam implementation will notify the client that the image has been exposed to the sensor. sl@0: @see CCamera::CCameraPreImageCaptureControl::GetCaptureEventSupportInfoL sl@0: */ sl@0: static const TUid KUidECamEventImageCaptureEvent = {KUidECamEventImageCaptureEventUidValue}; sl@0: sl@0: /** sl@0: Specifies the priority which may be assigned to the captured images which are still pending. sl@0: sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TECamImagePriority sl@0: { sl@0: /** Low Priority */ sl@0: EECamImagePriorityLow, sl@0: /** Medium Priority */ sl@0: EECamImagePriorityMedium, sl@0: /** Standard Priority */ sl@0: EECamImagePriorityStandard, sl@0: /** High Priority */ sl@0: EECamImagePriorityHigh, sl@0: /** Very High Priority */ sl@0: EECamImagePriorityVeryHigh sl@0: }; sl@0: sl@0: /** sl@0: A mixin class to be implemented by the client in order to use the PreImageCaptureControl API. The derived class methods sl@0: are called by the implementation when the pre image capture operations are ready to be notified accordingly. sl@0: sl@0: @see CCamera::CCameraPreImageCaptureControl sl@0: */ sl@0: class MPreImageCaptureControlObserver sl@0: { sl@0: public: sl@0: /** sl@0: Implementation sends this callback as a result of PrepareImageCapture completion. Every time client calls sl@0: CCameraPreImageCaptureControl::PrepareImageCapture, a new CCameraImageCapture* will be passed to the client for sl@0: image capture operations. Implementation will create the CCameraImageCapture* object after allocating the memory sl@0: resources required. Ownership of CCameraImageCapture* object will be passed to the client. sl@0: sl@0: @param aCaptureImageHandle sl@0: Retrieves pointer to the CCameraImageCapture object created by the implementation. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: KErrECamImageResourceNotReleased when camera device is capable of preparing only still or video. sl@0: KErrECamVideoResourceNotReleased when camera device is capable of preparing only still or video. sl@0: sl@0: @note Every time client needs to change the prepare image settings, a new instance of CCameraImageCapture will be sl@0: provided to it by the implementation. sl@0: sl@0: @note If error is KErrECamImageResourceNotReleased and client wants to successfully call the Prepare method again, sl@0: client needs to delete all CCameraImageCapture objects and any Snapshot and Histogram objects associated with sl@0: it as well. sl@0: sl@0: @note If error is KErrECamVideoResourceNotReleased and client wants to successfully call the Prepare method again, sl@0: client needs to call ReleaseVideoResource to unprepare video and then delete any Snapshot and Histogram sl@0: objects associated with it as well. sl@0: sl@0: @note If drive mode is set to EDriveModeTimeNudgeCapture the client will only receive this callback once the implementation sl@0: is ready with the number of pre-capture images specified in TDriveModeDependentAttributes. sl@0: */ sl@0: virtual void PrepareImageComplete(CCamera::CCameraImageCapture* aCaptureImageHandle, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface sl@0: which would support future callbacks. sl@0: sl@0: @param aInterface sl@0: The Uid of the particular interface function required for callbacks. sl@0: sl@0: @param aPtrInterface sl@0: The implementation has to type-cast the retrieved custom interface pointer to the appropriate type. sl@0: sl@0: @return The error code. sl@0: */ sl@0: virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0; sl@0: }; sl@0: sl@0: /** sl@0: A mixin class to be implemented by the client in order to use the Capture Image API. The derived class methods are sl@0: called by the implementation when the image capture operations are ready to be notified accordingly. sl@0: Implementation shall keep track of CCameraImageCapture object deletion. It has to ensure that a callback is not send sl@0: should the client destroy the CCameraImageCapture class object when the callback is queued to be send across. sl@0: Ownership of CCameraImageCapture is retained by the client. sl@0: sl@0: @see CCamera::CCameraImageCapture sl@0: @see CCamera::CCameraPostImageCaptureControl sl@0: */ sl@0: class MCaptureImageObserver sl@0: { sl@0: public: sl@0: /** sl@0: Implementation sends this callback to provide client the handle to control individual images to be captured. For sl@0: example, client may want to destroy the image even before the completion for some reasons. sl@0: This callback may be send to the client after the image is exposed to the sensor. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: CCameraPostImageCaptureControl instances will be owned by CCameraImageCapture and would be available until sl@0: new capture command is issued using the owning CCameraImageCapture instance. If client wishes to initiate new sl@0: capture but preserve the CCameraPostImageCaptureControl instances from previous capture, it would have to sl@0: create a new CCameraImageCapture instance and use that for the new capture. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This will be used to control the individual image. sl@0: sl@0: @note If, in case, there is some problem at implementation level while the image capture operation, for example, not sl@0: enough memory to create the class object CCameraPostImageCaptureControl, this callback may not be send. In such sl@0: cases, ImageCaptureComplete callback can be send with appropriate error code. sl@0: sl@0: @note Whether direct saving option is used or buffers are used for images, this callback will be received in both sl@0: the cases. sl@0: */ sl@0: virtual void IndividualImageControlHandle(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback when the individual image is ready and direct saving option is not used. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: CCameraPostImageCaptureControl instances will be owned by CCameraImageCapture and would be available until sl@0: new capture command is issued using the owning CCameraImageCapture instance. If client wishes to initiate new sl@0: capture but preserve the CCameraPostImageCaptureControl instances from previous capture, it would have to sl@0: create a new CCameraImageCapture instance and use that for the new capture. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This will be used to retrieve the individual image buffer. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: sl@0: @note If direct saving option is not used, this callback will be received by the client. sl@0: */ sl@0: virtual void ImageBufferReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback when a particular client snapshot data is available. The snapshot data represents sl@0: the individual image which may be in any drive mode. sl@0: sl@0: If a call to CCameraSnapshot::EnableSnapshotL() (on the CCameraImageCapture instance) is made without a successful call sl@0: to CCameraSnapshot::PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters) (on the CCameraImageCapture sl@0: instance), then the callback returns KErrBadHandle. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This is needed to identify the image which is represented by this snapshot. sl@0: sl@0: @param aSnapshotBuffer sl@0: Pointer to MCameraBuffer2 which retrieves the snapshot data for the individual image. The ownership will be sl@0: retained by the implementation. Client needs to call Release in order to indicate the implementation sl@0: that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: */ sl@0: virtual void ClientSnapshotForImageReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, MCameraBuffer2* aSnapshotBuffer, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback when the cut down version(lower resolution) of the individual image has sl@0: been directly saved to the file. sl@0: Client may use the cut down version of the actual image to view the image beforehand and may cancel the actual sl@0: individual image. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This may be used to cancel the actual image which might be currently sl@0: undergoing any processing options or even pause/resume ongoing processing options. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: sl@0: @note If direct saving option is being used, this callback may be received by the client. sl@0: */ sl@0: virtual void CutDownImageDirectSavingCompleted(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback when the individual image has been directly saved to the file. sl@0: This implies that the processing options associated with the image has been finally completed. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: CCameraPostImageCaptureControl instances will be owned by CCameraImageCapture and would be available until sl@0: new capture command is issued using the owning CCameraImageCapture instance. If client wishes to initiate new sl@0: capture but preserve the CCameraPostImageCaptureControl instances from previous capture, it would have to sl@0: create a new CCameraImageCapture instance and use that for the new capture. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: sl@0: @note If direct saving option is being used, this callback will be received by the client. sl@0: */ sl@0: virtual void ImageDirectSavingCompleted(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback when the Capture Image operation has been completed. This will be send to mark the sl@0: completion of the image capture even if direct saving option is being used. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: CCameraPostImageCaptureControl instances will be owned by CCameraImageCapture and would be available until sl@0: new capture command is issued using the owning CCameraImageCapture instance. If client wishes to initiate new sl@0: capture but preserve the CCameraPostImageCaptureControl instances from previous capture, it would have to sl@0: create a new CCameraImageCapture instance and use that for the new capture. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: sl@0: @note This callback marks the completion of image capture operation. So, whether direct saving option is used or sl@0: buffers are used for images, this callback will be received in both the cases. sl@0: sl@0: @note If drive mode is EDriveModeTimeNudgeCapture this callback will only be received once the total required amount sl@0: of images are captured (ie. pre-capture images + 1 + post-capture images) and the implementation is ready with sl@0: another set of pre-capture images (so implementation is prepared for next CaptureImage() call). sl@0: */ sl@0: virtual void ImageCaptureComplete(CCamera::CCameraImageCapture& aCaptureImageHandle, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about availability of the histogram data for the sl@0: individual image. If a call to CCameraV2Histogram::StartHistogram() (on the CCameraImageCapture instance) is made sl@0: without a previous successful call to CCameraV2Histogram::PrepareClientHistogramL() (on the CCameraImageCapture sl@0: instance) then the callback returns KErrBadHandle. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This provides the individual image for which the client histogram data sl@0: is available. sl@0: sl@0: @param aClientHistogramBuffer sl@0: Pointer to MHistogramV2Buffer which retrieves a single histogram for the individual image alongwith sl@0: relevant information about it. The ownership will be retained by the implementation. Client needs to call sl@0: Release in order to indicate the implementation that the buffer can be re-used. Client shall never try to sl@0: delete the pointer. NULL, if error. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: */ sl@0: virtual void ClientHistogramForImageReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about availability of the histogram data for the sl@0: snapshot of the individual image. If a call to CCameraV2Histogram::StartHistogram() (on the snapshot) is made without sl@0: a previous successful call to CCameraV2Histogram::PrepareClientHistogramL() (on the snapshot) then the callback sl@0: returns KErrBadHandle. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. This sl@0: provides handle to the snapshot(CCameraImageCapture::GetSnapshotHandleL()) for which the histogram data sl@0: is available. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This provides a mapping between the individual image and the snapshot for sl@0: which the client histogram data is available. sl@0: sl@0: @param aClientHistogramBuffer sl@0: Pointer to MHistogramV2Buffer which retrieves a single histogram for the snapshot of the individual image sl@0: alongwith relevant information about it. The ownership will be retained by the implementation. Client needs to call sl@0: Release in order to indicate the implementation that the buffer can be re-used. Client shall never try to sl@0: delete the pointer. NULL, if error. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: */ sl@0: virtual void ClientHistogramForSnapshotReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about the failure of processing options for the sl@0: individual image. sl@0: sl@0: @param aCaptureImageHandle sl@0: Reference to CCameraImageCapture class object which was used to issue the capture image operation. sl@0: sl@0: @param aPostCaptureControlId sl@0: Id used to identify a particular CCameraPostImageCaptureControl object associated with the given sl@0: CCameraImageCapture class object. This provides the individual image for which the processing options sl@0: has failed. sl@0: sl@0: @param aProcessingTypes sl@0: Bitfield of TEcamProcessingOptions associated with the image that have failed. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: */ sl@0: virtual void ProcessingFailed(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TUint aProcessingTypes, TInt aErrorCode) = 0; sl@0: /** sl@0: Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface sl@0: which would support future callbacks. sl@0: sl@0: @param aInterface sl@0: The Uid of the particular interface function required for callbacks. sl@0: sl@0: @param aPtrInterface sl@0: The implementation has to type-cast the retrieved custom interface pointer to the appropriate type. sl@0: sl@0: @return The error code. sl@0: */ sl@0: virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0; sl@0: }; sl@0: sl@0: /** sl@0: CCameraPreImageCaptureControl class exposes an API for controlling image operations/settings prior to image capture. sl@0: sl@0: @note This class is not intended for sub-classing and used to standardise existing sl@0: varieties of implementations. sl@0: sl@0: @note If the class methods leave, the output type parameter value is not guaranteed to be valid. sl@0: sl@0: @note Client should not use old Capture methods present in class CCamera. Class CCameraImageCapture and class sl@0: CCameraPostImageCaptureControl should be used rather. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class CCamera::CCameraPreImageCaptureControl : public CBase sl@0: { sl@0: /* so can use internal factory functions etc. */ sl@0: friend class CCamera; sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Specifies the type of direct saving. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TDirectSavingType sl@0: { sl@0: /** Image saved in buffers. Direct saving to file not being used. Callback used is sl@0: MCaptureImageObserver::ImageBufferReady. */ sl@0: EDirectSavingNotUsed = 0x00, sl@0: /** Image saved to file as per the format specified. Image saved after any processing options have completed. sl@0: Callback used is MCaptureImageObserver::ImageDirectSavingCompleted(). */ sl@0: EDirectSavingHighResolutionFileOnly = 0x01, sl@0: /** Image saved to file as per the format specified. Also, a lower resolution image gets saved in a separately sl@0: specified file. This helps in retrieving the lower resolution image sooner than the higher resolution sl@0: image gets saved. Callback used for lower resolution image saving is MCaptureImageObserver:: sl@0: CutDownImageDirectSavingCompleted(). */ sl@0: EDirectSavingWithLowerResolutionFile = 0x02 sl@0: }; sl@0: sl@0: /** sl@0: Specifies the various type of direct snapshot support. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TDirectSnapshotType sl@0: { sl@0: /** Direct snapshot not supported. */ sl@0: EDirectSnapshotNotSupported = 0x00, sl@0: /** Direct Snapshot supported. It will be displayed on the same direct viewfinder screen, out of which it has sl@0: been created */ sl@0: EDirectSnapshotSupported = 0x01 sl@0: }; sl@0: sl@0: /** Provides any extra drive mode dependent parameters to be used for image capture. */ sl@0: class TDriveModeDependentAttributes sl@0: { sl@0: public: sl@0: IMPORT_C TDriveModeDependentAttributes(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: private: sl@0: //for future expansion sl@0: TUint iSize:24; sl@0: TUint iVersion:8; sl@0: sl@0: //for future use sl@0: TInt iReserved1; sl@0: TInt iReserved2; sl@0: TInt iReserved3; sl@0: sl@0: public: sl@0: /** If drive mode is EDriveModeTimeNudgeCapture this represents the number of images to be captured sl@0: (pre-capture images) before client initiates actual image capture operation. */ sl@0: TInt iParam1; sl@0: /** If drive mode is EDriveModeTimeNudgeCapture this represents the number of images to be captured sl@0: (post-capture images) after client initiates actual image capture operation. */ sl@0: TInt iParam2; sl@0: }; sl@0: sl@0: /** sl@0: Specifies the available processing options. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TEcamProcessingOptions sl@0: { sl@0: /** Processing options are not supported.*/ sl@0: EEcamProcessingNone = 0x00000000, sl@0: /** Enable normal processing when image capture is initiated.*/ sl@0: EEcamNormalProcessing = 0x00000001, sl@0: /** Enable background processing when image capture is initiated.*/ sl@0: EEcamBackgroundProcessing = 0x00000002 sl@0: }; sl@0: sl@0: /** Provides the parameters necessary to perform set-up and allocation of memory for the images to be captured. */ sl@0: class TPrepareImageParameters sl@0: { sl@0: public: sl@0: IMPORT_C TPrepareImageParameters(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: IMPORT_C void SetImageProcessingOptions(TUint aImageProcessingOptions); sl@0: IMPORT_C void GetImageProcessingOptions(TUint& aImageProcessingOptions) const; sl@0: sl@0: private: sl@0: //for future expansion sl@0: TUint iSize:24; sl@0: TUint iVersion:8; sl@0: sl@0: //for future use sl@0: TInt iReserved1; sl@0: TInt iReserved2; sl@0: /** Bitfield of selected TEcamProcessingOptions which should be used after the images are captured from the sensor. */ sl@0: TUint iImageProcessingOptions; sl@0: sl@0: public: sl@0: /** The image format. */ sl@0: CCamera::TFormat iImageFormat; sl@0: /** The image size. */ sl@0: TSize iImageSize; sl@0: /** Pixel aspect ratio to be used for the image. */ sl@0: CCamera::CCameraAdvancedSettings::TPixelAspectRatio iPixelAspectRatio; sl@0: /** The drive mode in which the images will be captured. */ sl@0: CCamera::CCameraAdvancedSettings::TDriveMode iDriveMode; sl@0: /** The number of images to be captured if the drive mode is burst. */ sl@0: TInt iBurstImages; sl@0: /** The maximum memory size in kilo bytes when encoding to the image format. This shall be sl@0: KECamNoSpecificMaxMemorySize if client has no specific preference or if this setting is not supported. sl@0: 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: TInt iImageMaxMemorySize; sl@0: /** Identifies the rectangle to which the image is to be clipped. sl@0: If no specifc clipping rectangle desired by the client, the clipping region can be given by sl@0: origin as the top-left corner and size as iImageSize. */ sl@0: TRect iClipRect; sl@0: /** The attributes dependent on the type of drive mode used. */ sl@0: TDriveModeDependentAttributes iDriveModeAttributes; sl@0: }; sl@0: sl@0: private: sl@0: /** sl@0: Different types of color space. Camera will print or capture images in given color space. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: enum TColorSpace sl@0: { sl@0: /** not known */ sl@0: EColorSpaceUnknown = 0x0000, sl@0: /** sRGB color space */ sl@0: EColorSpacesRGB = 0x0001, sl@0: /** adobeRGB color space */ sl@0: EColorSpaceAdobeRGB = 0x0002, sl@0: /** adobeWideGamutRGB color space */ sl@0: EColorSpaceAdobeWideGamutRGB = 0x0004, sl@0: /** CMY(K) color space */ sl@0: EColorSpaceCMYK = 0x0008, sl@0: /** YIQ color space*/ sl@0: EColorSpaceYIQ = 0x0010, sl@0: /** YUV color space */ sl@0: EColorSpaceYUV = 0x0020, sl@0: /** YDbDr color space */ sl@0: EColorSpaceYDbDr = 0x0040, sl@0: /** YCbCr color space */ sl@0: EColorSpaceYCbCr = 0x0080, sl@0: /** HSB color space */ sl@0: EColorSpaceHSB = 0x0100, sl@0: /** HSL color space */ sl@0: EColorSpaceHSL = 0x0200 sl@0: }; sl@0: sl@0: /** sl@0: Specifies direction of panning. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: enum TPanoDirection sl@0: { sl@0: /** Viewfinder displays towards the right of already captured images */ sl@0: EPanoRight, sl@0: /** Viewfinder displays towards the left of already captured images */ sl@0: EPanoLeft, sl@0: /** Viewfinder displays towards the top of already captured images */ sl@0: EPanoUp, sl@0: /** Viewfinder displays towards the bottom of already captured images */ sl@0: EPanoDown sl@0: }; sl@0: sl@0: /** sl@0: Specifies the stitching options when panning is started. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: enum TStitchingOption sl@0: { sl@0: /** Stitching of panned images is not supported by the ECAM Implementation.*/ sl@0: EStitchingOptionNone = 0x00, sl@0: /** Stitching of panned images can be done by the ECAM Implementation.*/ sl@0: EStitchingOptionEnable = 0x01, sl@0: /** Stitching of panned images can be disabled/discarded by the ECAM Implementation.*/ sl@0: EStitchingOptionDisable = 0x02 sl@0: }; sl@0: sl@0: /** sl@0: Specifies whether the panned images captured under 'stitching enabled option' would be discarded by the implementation. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: enum TStitchedImageRetrieval sl@0: { sl@0: /** allow ecam implementation to provide the stitched images. */ sl@0: EStitchedImageRetrieve, sl@0: /** instruct ECAM Implementation to discard the stitched images. */ sl@0: EStitchedImageDiscard sl@0: }; sl@0: sl@0: public: sl@0: /** sl@0: Provides information regarding streamed image buffers or sub-frames. sl@0: @publishedPartner sl@0: */ sl@0: class TImageBufferInfo sl@0: { sl@0: public: sl@0: IMPORT_C TImageBufferInfo(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: IMPORT_C TBool IsSubFrameUsed() const ; sl@0: sl@0: IMPORT_C void SetSubFrameState(TBool aIsSubFrameUsed); sl@0: sl@0: IMPORT_C TBool IsParallelStreamedBufferUsed() const; sl@0: sl@0: IMPORT_C void SetParallelStreamedBufferState(TBool aIsParallelStreamedBufferUsed); sl@0: sl@0: IMPORT_C TUint SubFrameSequenceNumber() const; sl@0: sl@0: IMPORT_C TInt SetSubFrameSequenceNumber(TUint aSubFrameSequenceNumber); sl@0: sl@0: IMPORT_C TUint TotalSubFrames() const; sl@0: sl@0: IMPORT_C TInt SetTotalSubFrames(TUint aTotalSubFrames); sl@0: sl@0: private: sl@0: //for future expansion sl@0: TUint iSize:24; sl@0: TUint iVersion:8; sl@0: sl@0: //for future use sl@0: TInt iReserved1; sl@0: TInt iReserved2; sl@0: TInt iReserved3; sl@0: TInt iReserved4; sl@0: TInt iReserved5; sl@0: TInt iReserved6; sl@0: TUint iReservedBits:11; sl@0: sl@0: /** Indicates whether the streamed image scheme or sub-frame scheme is being used. sl@0: One bit is enough to provide such information */ sl@0: TUint iIsSubFrameUsed:1; sl@0: /** Indicates whether the parallel buffering is being used by the implementation in order to speed up the streamed sl@0: image operation, as a whole. One bit is enough to provide such information. sl@0: Parallel buffering indicates that implementation is using more than one buffer to handle the various sub-frames; sl@0: hence speeding up the operation.*/ sl@0: TUint iIsParallelBufferUsed:1; sl@0: /** Sequence number of the sub-frame. sl@0: 9 bits used for sequence no. assuming that KECamMaxTotalSubFrames sub-frames would be used at max */ sl@0: TUint iSubFrameSequenceNumber:9; sl@0: /** Total number of sub-frames to be retrieved by the client in order to properly reconstruct the actual image. sl@0: It does not give the number of outstanding sub-frames needed to reconstruct the image. sl@0: This value will be same for every sub-frames needed to re-construct the actual image. sl@0: Maximum no. of total sub-frames is KECamMaxTotalSubFrames.*/ sl@0: TUint iTotalSubFrames:10; sl@0: sl@0: public: sl@0: /** The exact position of the sub-frame within the actual image frame. The actual image frame's bounding rectangle sl@0: is defined by origin as top-left and TSize parameter used to prepare the image capture. */ sl@0: TRect iSubFramePosition; sl@0: sl@0: /** The parameters used for this image */ sl@0: TPrepareImageParameters iImageParameters; sl@0: }; sl@0: sl@0: public: sl@0: sl@0: IMPORT_C static CCameraPreImageCaptureControl* NewL(CCamera& aCamera, MPreImageCaptureControlObserver& aPreImageCaptureControlObserver); sl@0: sl@0: IMPORT_C void GetDirectSnapshotSupportInfoL(TUint& aIsDirectSnapshotSupported) const; sl@0: sl@0: IMPORT_C void GetSupportedEmbeddedStillCaptureSettingsL(RArray& aSupportedEmbeddedStillCaptureSettings) const; sl@0: sl@0: IMPORT_C void GetSupportedDirectSavingTypeL(TDirectSavingType& aSupportedDirectSavingType) const; sl@0: sl@0: IMPORT_C void SetSequentialImageFilenameL(const TDesC8& aFilename, TInt aStartingSequenceNumber); sl@0: sl@0: IMPORT_C void SetLowerResolutionSequentialImageFilenameL(const TDesC8& aLowerResolutionFilename, TInt aStartingSequenceNumber); sl@0: sl@0: IMPORT_C void GetDirectSavingTypeL(TDirectSavingType& aDirectSavingType) const; sl@0: sl@0: IMPORT_C void SetDirectSavingTypeL(TDirectSavingType aDirectSavingType); sl@0: sl@0: IMPORT_C void GetCaptureEventSupportInfoL(TUint& aSupportedDriveModes) const; sl@0: sl@0: IMPORT_C void GetImageFormatsSupportedL(TUint& aImageFormatsSupported, const TSize& aSize) const; sl@0: sl@0: IMPORT_C void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aImageFormat, const TSize& aSize) const; sl@0: sl@0: IMPORT_C void PrepareImageCapture(const TPrepareImageParameters& aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver); sl@0: sl@0: IMPORT_C void GetImageMaxMemorySizeSettingSupportInfoL(TBool& aIsImageMaxMemorySizeSettingSupported) const; sl@0: sl@0: IMPORT_C void GetImageMaxMemorySizeL(TUint& aMemorySize) const; sl@0: sl@0: IMPORT_C ~CCameraPreImageCaptureControl(); sl@0: sl@0: IMPORT_C void GetSupportedProcessingOptionsL(TUint& aECamProcessingOptionsSupported) const; sl@0: sl@0: private: sl@0: CCameraPreImageCaptureControl(CCamera& aOwner); sl@0: void ConstructL(MPreImageCaptureControlObserver& aPreImageCaptureControlObserver); sl@0: sl@0: private: sl@0: void GetMaximumSpotsL(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode, TInt& aMaximumSpots) const; sl@0: void GetSupportedSpotsCombinationL(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode, RArray& aPossibleSpotCombinations) const; sl@0: void GetSpotsCombinationL(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode, TUint& aSpotsCombination) const; sl@0: void SetSpotsCombination(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode, TUint aSpotsCombination); sl@0: sl@0: void GetStreamedImageSupportInfoL(TBool& aIsStreamedImageSupported) const; sl@0: void EnableSubFramesL(); sl@0: void DisableSubFramesL(); sl@0: void GetSubFramesStateL(TBool& aIsSubFrameEnabled) const; sl@0: void GetStreamedImageSupportedTransformationsL(RArray& aStreamedImageSupportedTransformations) const; sl@0: sl@0: void GetPanoModeSupportInfoL(TBool& aIsPanoModeSupported, TInt& aSupportedStitchingOption) const; sl@0: void StartPanoMode(TStitchingOption aStitchingOption); sl@0: void StartPanoMode(TStitchingOption aStitchingOption, const RArray& aVFHandle); sl@0: void GetPanoDirectionL(TPanoDirection& aPanoDirection) const; sl@0: void SetPanoDirection(TPanoDirection aPanoDirection); sl@0: void StopPanoModeL(TStitchedImageRetrieval aStitchedImageRetrieval); sl@0: sl@0: void GetSupportedColorSpaceL(TUint& aSupportedColorSpace) const; sl@0: void GetColorSpaceL(TColorSpace& aColorSpace) const; sl@0: void SetColorSpace(TColorSpace aColorSpace); sl@0: sl@0: void StartEmbeddedStillCaptureSettingsL(); sl@0: void EndEmbeddedStillCaptureSettingsL(); sl@0: void GetFailedEmbeddedStillCaptureSettingsL(RArray& aFailedEmbeddedStillCaptureSettings) const; sl@0: sl@0: private: sl@0: CCamera& iOwner; sl@0: MCameraPreImageCaptureControl* iImpl; // not owned sl@0: }; sl@0: sl@0: /** sl@0: CCameraImageCapture class exposes an API for capturing the image and controlling the overall capture. This class gets sl@0: created by the implementation of MCameraPreImageCaptureControl::PrepareImageCapture and passed to the client through sl@0: callback MPreImageCaptureControlObserver::PrepareImageComplete. sl@0: Destruction of this class is equivalent to releasing the resources owned in order to prepare and allocate memory for sl@0: capturing images. sl@0: sl@0: @note This class is not intended for sub-classing and used to standardise existing sl@0: varieties of implementations. sl@0: sl@0: @note If the class methods leave, the output type parameter value is not guaranteed to be valid. sl@0: sl@0: @note The use of this class implies that client will be able to issue image capture call even if previous sl@0: captures are still outstanding. sl@0: sl@0: @note Clients must implement an MCaptureImageObserver in order to use this CCameraImageCapture API. sl@0: MCameraObserver2::ImageBufferReady will not be used with this class. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class CCamera::CCameraImageCapture : public CBase sl@0: { sl@0: /* so can use internal factory functions etc. */ sl@0: friend class CCamera; sl@0: sl@0: /* so can use the MCameraImageCapture* as well. */ sl@0: friend class CCameraPostImageCaptureControl; sl@0: sl@0: public: sl@0: IMPORT_C static CCameraImageCapture* CreateL(CCamera& aCamera, const CCamera::CCameraPreImageCaptureControl:: sl@0: TPrepareImageParameters& aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver); sl@0: sl@0: IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const; sl@0: sl@0: IMPORT_C CCamera::CCameraSnapshot* GetSnapshotHandleL(TInt aClientViewFinderId) const; sl@0: sl@0: IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const; sl@0: sl@0: IMPORT_C void GetPrepareImageParametersL(CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters) const; sl@0: sl@0: IMPORT_C void CaptureImage(); sl@0: sl@0: IMPORT_C void CancelCaptureImage(); sl@0: sl@0: IMPORT_C void GetNumImagesExposedL(TUint& aNumImagesExposed) const; sl@0: sl@0: IMPORT_C void GetNumTotalImagesL(TUint& aNumTotalImages) const; sl@0: sl@0: IMPORT_C void GetPostCaptureControlHandleL(CCamera::CCameraPostImageCaptureControl*& aPostCaptureControlHandle, TPostCaptureControlId aPostCaptureControlId) const; sl@0: sl@0: IMPORT_C void SetCaptureImagePriorityL(TECamImagePriority aCaptureImagePriority); sl@0: sl@0: IMPORT_C void GetCaptureImagePriorityL(TECamImagePriority& aCaptureImagePriority) const; sl@0: sl@0: IMPORT_C void PauseProcessing(TUint aProcessingTypes); sl@0: sl@0: IMPORT_C void ResumeProcessingL(TUint aProcessingTypes); sl@0: sl@0: IMPORT_C ~CCameraImageCapture(); sl@0: sl@0: private: sl@0: CCameraImageCapture(CCamera& aOwner); sl@0: void ConstructL(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters, sl@0: MCaptureImageObserver& aCaptureImageObserver); sl@0: sl@0: MCameraImageCapture* Impl() const; sl@0: sl@0: private: sl@0: CCamera& iOwner; sl@0: MCameraImageCapture* iImpl; // not owned sl@0: }; sl@0: sl@0: /** This class is used to provide further information about still image data. sl@0: sl@0: @see MCameraBuffer sl@0: @see MCameraBuffer2 sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraImageBuffer : public MCameraBuffer2 sl@0: { sl@0: public: sl@0: /** sl@0: Retrieves information regarding the image data received. sl@0: sl@0: @param aImageBufferInfo sl@0: Retrieves the info regarding the image data received. sl@0: sl@0: @return KErrArgument if implementation finds a different extended version of the TImageBufferInfo class. sl@0: sl@0: @return May leave with other error codes. sl@0: sl@0: @note When there is a sub-frame, each image buffer retrieved contains only one sub-frame. If any of the subframe sl@0: delivery reports an error, then no further subframes of this image would be delivered to the client. sl@0: sl@0: @note Also retrieves information in order to distinguish the retrieved image buffer when shot-to-shot reduced latency sl@0: scheme is used. sl@0: */ sl@0: virtual TInt GetImageBufferInfo(CCamera::CCameraPreImageCaptureControl::TImageBufferInfo& aImageBufferInfo) const=0; sl@0: }; sl@0: sl@0: /** sl@0: CCameraPostImageCaptureControl 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: CCameraPostImageCaptureControl instances will be owned by CCameraImageCapture and would be available until new capture sl@0: command is issued using the owning CCameraImageCapture instance. If client wishes to initiate new capture but preserve sl@0: the CCameraPostImageCaptureControl instances from previous capture, it would have to create a new CCameraImageCapture sl@0: instance and use that for the new capture. sl@0: sl@0: @note This class is not intended for sub-classing and used to standardise existing sl@0: varieties of implementations. sl@0: sl@0: @note If the class methods leave, the output type parameter value is not guaranteed to be valid. sl@0: sl@0: @note The use of this class implies that client will be able to issue image capture call even if previous sl@0: captures are still outstanding. sl@0: sl@0: @note Clients must implement an MCaptureImageObserver in order to use this CCameraPostImageCaptureControl API. sl@0: MCameraObserver2::ImageBufferReady will not be used with this class. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class CCamera::CCameraPostImageCaptureControl : public CBase sl@0: { sl@0: public: sl@0: /** sl@0: Specifies the various states in which the individual images could be. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TImageState sl@0: { sl@0: /** The image has been exposed to the sensor but still pending for any processing options. */ sl@0: EProcessingPending, sl@0: /** The image is undergoing processing for the required processing options. */ sl@0: EProcessingOngoing, sl@0: /** The processing options associated with the image has been cancelled. */ sl@0: EProcessingCancelled, sl@0: /** The processing options associated with the image has been completed. This implies that either the sl@0: image buffers are ready or the image is directly saved to the file. */ sl@0: EProcessingCompleted sl@0: }; sl@0: sl@0: /** sl@0: Specifies the various states in which the individual image buffers could be. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TBufferState sl@0: { sl@0: /** If Direct Saving option used, then user accessible buffers are not present. Hence buffer state will always be EBufferNotPresent. sl@0: If Direct Saving option not used, this buffer state implies that processing options have not been completed. */ sl@0: EBufferNotPresent, sl@0: /** This buffer state implies that processing options have been completed. Client may retrieve the image buffers sl@0: once this state is reached. */ sl@0: EBufferReady, sl@0: /** This buffer state implies that client has released the image buffers after retrieving the data. */ sl@0: EBufferReleased sl@0: }; sl@0: sl@0: public: sl@0: IMPORT_C static CCameraPostImageCaptureControl* CreateL(CCameraImageCapture* aCameraImageCapture, TPostCaptureControlId aPostCaptureControlId); sl@0: sl@0: IMPORT_C void GetPostCaptureControlId(TPostCaptureControlId& aPostCaptureControlId) const; sl@0: sl@0: IMPORT_C CCamera::CCameraImageCapture* ImageCaptureHandle() const; sl@0: sl@0: IMPORT_C void GetImageSequenceNumberL(TUint& aSequenceNumber) const; sl@0: sl@0: IMPORT_C void CancelImage(); sl@0: sl@0: IMPORT_C void SetImagePriorityL(TECamImagePriority aImagePriority); sl@0: sl@0: IMPORT_C void GetImagePriorityL(TECamImagePriority& aImagePriority) const; sl@0: sl@0: IMPORT_C void PauseProcessing(TUint aProcessingTypes); sl@0: sl@0: IMPORT_C void ResumeProcessingL(TUint aProcessingTypes); sl@0: sl@0: IMPORT_C void GetImageBufferL(MCameraImageBuffer& aCameraImageBuffer) const; sl@0: sl@0: IMPORT_C void GetImageStateL(TImageState& aImageState) const; sl@0: sl@0: IMPORT_C void GetBufferStateL(TBufferState& aBufferState) const; sl@0: sl@0: IMPORT_C ~CCameraPostImageCaptureControl(); sl@0: sl@0: private: sl@0: CCameraPostImageCaptureControl(CCamera::CCameraImageCapture* aCameraImageCapture, TPostCaptureControlId aPostCaptureControlId); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: TPostCaptureControlId iPostCaptureControlId; sl@0: CCamera::CCameraImageCapture* iCameraImageCapture; // not owned sl@0: MCameraPostImageCaptureControl* iImpl; // not owned sl@0: }; sl@0: sl@0: /** sl@0: Notification of set-up completion before video capture. sl@0: @note If error is KErrECamImageResourceNotReleased and client wants to successfully call the Prepare method again, sl@0: client needs to delete all CCameraImageCapture objects and any Snapshot and Histogram objects associated with sl@0: it as well. sl@0: sl@0: @note If error is KErrECamVideoResourceNotReleased and client wants to successfully call the Prepare method again, sl@0: client needs to call ReleaseVideoResource to unprepare video and then delete any Snapshot and Histogram sl@0: objects associated with it as well. sl@0: */ sl@0: static const TUid KUidECamEventVideoCaptureControlPrepareComplete = {KUidECamEventVideoCaptureControlPrepareCompleteUidValue}; sl@0: sl@0: /** sl@0: Notifies that range of certain camera settings have been changed because of desired video settings. sl@0: Client may call GetRangeAffectedSettingsL(RArray& aRangeAffectedSettings) const to get the list of affected camera settings. sl@0: */ sl@0: static const TUid KUidECamEventVideoCaptureControlSettingsRangeChanged = {KUidECamEventVideoCaptureControlSettingsRangeChangedUidValue}; sl@0: sl@0: /** sl@0: Notifies that value of certain camera settings have been changed because of desired video settings. sl@0: Client may call GetValueAffectedSettingsL(RArray& aValueAffectedSettings) const to get the list of affected camera settings. sl@0: */ sl@0: static const TUid KUidECamEventVideoCaptureControlSettingsValueChanged = {KUidECamEventVideoCaptureControlSettingsValueChangedUidValue}; sl@0: sl@0: /** sl@0: Notifies that value of certain camera settings have been disabled because of desired video settings. sl@0: Client may call GetDisabledSettingsL(RArray& aDisabledSettings) const to get the list of affected camera settings. sl@0: */ sl@0: static const TUid KUidECamEventVideoCaptureControlSettingsDisabled = {KUidECamEventVideoCaptureControlSettingsDisabledUidValue}; sl@0: sl@0: /** sl@0: A mixin class to be implemented by the client in order to use the video capture control API(CCameraVideoCaptureControl). sl@0: The derived class methods are called by the implementation when the video capture operations are ready to be notified sl@0: accordingly. sl@0: sl@0: @see CCamera::CCameraVideoCaptureControl sl@0: */ sl@0: class MCaptureVideoObserver sl@0: { sl@0: public: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about the availability of video frames. sl@0: sl@0: @param aVideoBuffer sl@0: Pointer to MCameraBuffer2 class object which retrieves the video frames. The ownership will be retained by sl@0: the implementation. Client needs to call Release in order to indicate the implementation that the buffer can sl@0: be re-used. Client shall never try to delete the pointer. NULL, if error. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: */ sl@0: virtual void VideoBufferReady(MCameraBuffer2* aVideoBuffer, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about the availability of client snapshot data for the sl@0: video being captured. sl@0: sl@0: If a call to CCameraSnapshot::EnableSnapshotL() (on the CCameraVideoCaptureControl instance) is made without a sl@0: successful call to CCameraSnapshot::PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters) (on the sl@0: CCameraVideoCaptureControl instance), then the callback returns KErrBadHandle. sl@0: sl@0: @param aSnapshotBuffer sl@0: Pointer to MCameraBuffer2 class object which retrieves the snapshot for the video being captured. The sl@0: ownership will be retained by the implementation. Client needs to call Release in order to indicate the sl@0: implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: */ sl@0: virtual void ClientSnapshotReady(MCameraBuffer2* aSnapshotBuffer, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about availability of the histogram data. If a call sl@0: to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram:: sl@0: PrepareClientHistogramL() then the callback returns KErrBadHandle. sl@0: sl@0: @param aClientHistogramBuffer sl@0: Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The sl@0: ownership will be retained by the implementation. Client needs to call Release in order to indicate the sl@0: implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error. sl@0: sl@0: @param aErrorCode sl@0: Appropriate error code. sl@0: sl@0: @note Client shall use the currently available histogram for the video frames until a new histogram is available. sl@0: */ sl@0: virtual void ClientHistogramReady(MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about the failure of image processing for the video sl@0: frames. sl@0: sl@0: @param aErrorCode sl@0: The reason of failure of the image processing. sl@0: */ sl@0: virtual void ImageProcessingFailed(TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Implementation sends this callback in order to notify the client about the failure of direct video capture operation. sl@0: sl@0: @param aErrorCode sl@0: The reason of failure of the direct video capture. The error code could be ECam specific. Client shall sl@0: be prepared to handle unrecognized error code. sl@0: */ sl@0: virtual void DirectVideoCaptureFailed(TInt aErrorCode)=0; sl@0: sl@0: /** sl@0: Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface sl@0: which would support future callbacks. sl@0: sl@0: @param aInterface sl@0: The Uid of the particular interface function required for callbacks. sl@0: sl@0: @param aPtrInterface sl@0: The implementation has to type-cast the retrieved custom interface pointer to the appropriate type. sl@0: sl@0: @return The error code. sl@0: */ sl@0: virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0; sl@0: }; sl@0: sl@0: /** sl@0: CCamera Video Capture Control class exposes an API for controlling operations related to video capture. This gives priority sl@0: to the low latency aspect by postponing the post processing activity involved with current video captured data(while sl@0: stopping the video capture) in order to capture/prepare for next still image. sl@0: sl@0: @note This class is not intended for sub-classing and used to standardise existing varieties of implementations. sl@0: sl@0: @note If the class methods leave, any reference argument is not guaranteed to be valid. sl@0: sl@0: @note Clients must implement an MCaptureVideoObserver in order to use this CCameraVideoCaptureControl API. sl@0: MCameraObserver2::VideoBufferReady will not be used with this class. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class CCamera::CCameraVideoCaptureControl : public CBase sl@0: { sl@0: /* so can use internal factory functions etc. */ sl@0: friend class CCamera; sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Specifies video capture state. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TVideoCaptureState sl@0: { sl@0: /** Video Capture has been prepared but not yet started */ sl@0: EVideoCapturePrepared, sl@0: /** Video Capture has been started and is running */ sl@0: EVideoCaptureActive, sl@0: /** Video Capture has been started and is paused */ sl@0: EVideoCapturePaused, sl@0: /** Video Capture has been stopped or not yet prepared */ sl@0: EVideoCaptureInActive sl@0: }; sl@0: sl@0: /** sl@0: Specifies the various embedded still capture support. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TEmbeddedStillCaptureTypes sl@0: { sl@0: /** Embedded still capture not supported */ sl@0: EEmbeddedStillCaptureNotSupported = 0x00, sl@0: /** Embedded still capture supported */ sl@0: EEmbeddedStillCaptureSupported = 0x01 sl@0: }; sl@0: sl@0: /** sl@0: Specifies the various video capture types. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum TVideoCaptureType sl@0: { sl@0: /** Video capture not supported. */ sl@0: EVideoCaptureNotSupported = 0x00, sl@0: /** Client video capture - Client video capture is a concept under which sl@0: video buffers will be available to the clients of ECam through the sl@0: dedicated observer MCaptureVideoObserver::VideoBufferReady(). Video frame sl@0: formats used under this client video capture can be either compressed video sl@0: frames or uncompressed video frames which are available through CCamera::TFormat. */ sl@0: EClientVideoCapture = 0x01, sl@0: /** Direct video capture - Direct video capture is a concept under which sl@0: video buffers will not be available to the clients of ECam through the dedicated observers. Video frames will be used sl@0: by the ECam adaptation and could be passed internally to other components. Video frame formats used under this direct sl@0: video capture can be either compressed video frames or uncompressed video frames which are available through sl@0: CCamera::TFormat. */ sl@0: EDirectVideoCapture = 0x02 sl@0: }; sl@0: sl@0: /** sl@0: Specifies the fading effect for video captured frames. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @internalTechnology sl@0: */ sl@0: enum TFadingEffectState sl@0: { sl@0: /** The fading effect will be visible on video captured frames as well, sl@0: whenever the viewfinder fading is enabled */ sl@0: EFadingEffectEnabled, sl@0: /** The fading effect will not be visible on video captured frames, sl@0: whenever the viewfinder fading is enabled */ sl@0: EFadingEffectDisabled sl@0: }; sl@0: sl@0: /** sl@0: Provides information regarding parameters needed to prepare for video capture. sl@0: */ sl@0: class TPrepareVideoParameters sl@0: { sl@0: public: sl@0: IMPORT_C TPrepareVideoParameters(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: IMPORT_C TBool IsEmbeddedStillCaptureEnabled() const; sl@0: IMPORT_C void SetEmbeddedStillCaptureState(TBool aIsEmbeddedStillCaptureEnabled); sl@0: sl@0: IMPORT_C CCamera::CCameraVideoCaptureControl::TVideoCaptureType VideoCaptureType() const; sl@0: IMPORT_C void SetVideoCaptureType(CCamera::CCameraVideoCaptureControl::TVideoCaptureType aVideoCaptureType); sl@0: sl@0: private: sl@0: //for future expansion sl@0: TUint iSize:24; sl@0: TUint iVersion:8; sl@0: sl@0: //for future use sl@0: TInt iReserved1; sl@0: TInt iReserved2; sl@0: TInt iReserved3; sl@0: sl@0: TUint iReservedBits:26; sl@0: sl@0: TUint iVideoCaptureType:3; sl@0: sl@0: TUint iReservedBits2:2; sl@0: sl@0: /** Indicates whether the embedded still capture is enabled. sl@0: One bit is enough to provide such information */ sl@0: TUint iIsEmbeddedStillCaptureEnabled:1; sl@0: sl@0: public: sl@0: /** Format must be one of the video frame formats supported (see TCameraInfo::iVideoFrameFormatsSupported). */ sl@0: CCamera::TFormat iFormat; sl@0: sl@0: /** Pixel aspect ratio to be used for the image. */ sl@0: CCamera::CCameraAdvancedSettings::TPixelAspectRatio iPixelAspectRatio; sl@0: sl@0: /** Size index must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1 inclusive. */ sl@0: TInt iSizeIndex; sl@0: sl@0: /** The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1 inclusive. */ sl@0: TInt iRateIndex; sl@0: sl@0: /** The number of discrete buffers to use. */ sl@0: TInt iBuffersToUse; sl@0: sl@0: /** This indirectly indicates how large the buffers are to be. Number of frames per buffer must be less than or sl@0: equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned to MCaptureVideoObserver:: sl@0: VideoBufferReady() at a time. */ sl@0: TInt iFramesPerBuffer; sl@0: sl@0: /** Identifies the rectangle to which the video frame has to be clipped. sl@0: If no specifc clipping rectangle desired by the client, the clipping region can be given by sl@0: origin as the top-left corner and size as given by iSizeIndex. */ sl@0: TRect iClipRect; sl@0: }; sl@0: sl@0: public: sl@0: sl@0: IMPORT_C static CCameraVideoCaptureControl* NewL(CCamera& aCamera, MCaptureVideoObserver& aCaptureVideoObserver); sl@0: sl@0: IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const; sl@0: sl@0: IMPORT_C CCamera::CCameraSnapshot* GetSnapshotHandleL(TInt aClientViewFinderId) const; sl@0: sl@0: IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const; sl@0: sl@0: IMPORT_C void GetVideoFormatsSupportedL(TUint& aVideoFormatsSupported, const TSize& aSize) const; sl@0: sl@0: IMPORT_C void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aVideoFormat, const TSize& aSize) const; sl@0: sl@0: IMPORT_C void GetEmbeddedStillCaptureSupportInfoL(TInt& aSupportedEmbeddedStillCaptureTypes) const; sl@0: sl@0: IMPORT_C void PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters); sl@0: sl@0: IMPORT_C void GetRangeAffectedSettingsL(RArray& aRangeAffectedSettings) const; sl@0: sl@0: IMPORT_C void GetValueAffectedSettingsL(RArray& aValueAffectedSettings) const; sl@0: sl@0: IMPORT_C void GetDisabledSettingsL(RArray& aDisabledSettings) const; sl@0: sl@0: IMPORT_C void ReleaseVideoResource(); sl@0: sl@0: IMPORT_C void StartVideoCaptureL(); sl@0: sl@0: IMPORT_C void StopVideoCapture(); sl@0: sl@0: IMPORT_C void PauseVideoCapture(); sl@0: sl@0: IMPORT_C void ResumeVideoCaptureL(); sl@0: sl@0: IMPORT_C void GetFadingEffectStateL(TFadingEffectState& aFadingEffectState) const; sl@0: sl@0: IMPORT_C void SetFadingEffectState(TFadingEffectState aFadingEffectState); sl@0: sl@0: IMPORT_C void GetVideoCaptureStateL(TVideoCaptureState& aVideoCaptureState) const; sl@0: sl@0: IMPORT_C ~CCameraVideoCaptureControl(); sl@0: sl@0: IMPORT_C void GetVideoCaptureSupportInfoL(TInt& aSupportedVideoCaptureTypes) const; sl@0: sl@0: IMPORT_C void GetPrepareVideoParametersL(TPrepareVideoParameters& aPrepareVideoParameters) const; sl@0: sl@0: private: sl@0: CCameraVideoCaptureControl(CCamera& aOwner); sl@0: void ConstructL(MCaptureVideoObserver& aCaptureVideoObserver); sl@0: sl@0: private: sl@0: void GetSupportedConversionCoefficientsL(TUint& aSupportedConversionCoefficients) const; sl@0: void GetConversionCoefficientL(TYuvCoefficients& aConversionCoefficients) const; sl@0: void SetConversionCoefficient(TYuvCoefficients aConversionCoefficients); sl@0: sl@0: private: sl@0: CCamera& iOwner; sl@0: MCameraVideoCaptureControl* iImpl; // not owned sl@0: }; sl@0: sl@0: #endif //ECAMCAPTURECONTROL_H