sl@0: // Copyright (c) 2002-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: @publishedAll sl@0: @released sl@0: */ sl@0: #ifndef ECAM_H sl@0: #define ECAM_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: class MFrameBuffer; sl@0: class RWsSession; sl@0: class CWsScreenDevice; sl@0: class RWindowBase; sl@0: class CFbsBitmap; sl@0: sl@0: typedef TInt TPostCaptureControlId; sl@0: sl@0: /** Specifies camera device information. sl@0: sl@0: If either zoom or digital zoom are available then the appropriate entries sl@0: in this class will be set to indicate the range of values that they may take. sl@0: This should be implemented such that a setting of zero corresponds to no zoom, sl@0: and a step of one corresponds to the smallest increment available, in a linear sl@0: fashion. sl@0: sl@0: There are also zoom factors that correspond to the actual zoom factor when sl@0: at minimum (non-digital only) and maximum zoom. Negative zoom values represent sl@0: macro functionality. sl@0: sl@0: Image capture, if supported, is simply a case of transferring the current sl@0: image from the camera to the client via MCameraObserver::ImageReady(). The sl@0: camera class must set the iImageFormatsSupported bitfield to indicate the sl@0: formats available. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TCameraInfo sl@0: { sl@0: public: sl@0: /** Possible directions in which the camera may point. sl@0: */ sl@0: enum TCameraOrientation sl@0: { sl@0: /** Outward pointing camera for taking pictures. sl@0: Camera is directed away from the user. */ sl@0: EOrientationOutwards, sl@0: /** Inward pointing camera for conferencing. sl@0: Camera is directed towards the user. */ sl@0: EOrientationInwards, sl@0: /** Mobile camera capable of multiple orientations. sl@0: Camera orientation may be changed by the user. */ sl@0: EOrientationMobile, sl@0: /** Camera orientation is not known. */ sl@0: EOrientationUnknown sl@0: }; sl@0: sl@0: /** Various flags describing the features available for a particular implementation sl@0: */ sl@0: enum TOptions sl@0: { sl@0: /** View finder display direct-to-screen flag */ sl@0: EViewFinderDirectSupported = 0x0001, sl@0: /** View finder bitmap generation flag */ sl@0: EViewFinderBitmapsSupported = 0x0002, sl@0: /** Still image capture flag */ sl@0: EImageCaptureSupported = 0x0004, sl@0: /** Video capture flag */ sl@0: EVideoCaptureSupported = 0x0008, sl@0: /** View finder display mirroring flag */ sl@0: EViewFinderMirrorSupported = 0x0010, sl@0: /** Contrast setting flag */ sl@0: EContrastSupported = 0x0020, sl@0: /** Brightness setting flag */ sl@0: EBrightnessSupported = 0x0040, sl@0: /** View finder clipping flag */ sl@0: EViewFinderClippingSupported = 0x0080, sl@0: /** Still image capture clipping flag */ sl@0: EImageClippingSupported = 0x0100, sl@0: /** Video capture clipping flag */ sl@0: EVideoClippingSupported = 0x0200 sl@0: }; sl@0: public: sl@0: /** Version number and name of camera hardware. */ sl@0: TVersion iHardwareVersion; sl@0: /** Version number and name of camera software (device driver). */ sl@0: TVersion iSoftwareVersion; sl@0: /** Orientation of this particular camera device. */ sl@0: TCameraOrientation iOrientation; sl@0: sl@0: /** Bitfield of TOptions available */ sl@0: TUint32 iOptionsSupported; sl@0: /** The supported flash modes. sl@0: sl@0: This is a bitfield of CCamera::TFlash values. sl@0: sl@0: If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the sl@0: application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed sl@0: from the implementation should be filtered by ECAM Implementation. sl@0: To receive unrecognised/extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: to create camera object. This is an indication to ECAM implementation. In this case, application is assumed sl@0: to be prepared to receive unrecognised enum values. sl@0: @see CCamera::CCameraAdvancedSettings::SupportedFlashModes() sl@0: sl@0: */ sl@0: TUint32 iFlashModesSupported; sl@0: /** The supported exposure modes. sl@0: sl@0: This is a bitfield of CCamera::TExposure values. */ sl@0: TUint32 iExposureModesSupported; sl@0: sl@0: /** The supported white balance settings. sl@0: sl@0: This is a bitfield of of CCamera::TWhiteBalance values. sl@0: sl@0: If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the sl@0: application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed sl@0: from the implementation should be filtered by ECAM Implementation. sl@0: To receive unrecognised/extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: to create camera object. This is an indication to ECAM implementation. In this case, application is assumed sl@0: to be prepared to receive unrecognised enum values. sl@0: Refer to CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes() implementation sl@0: sl@0: @see CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes() sl@0: */ sl@0: TUint32 iWhiteBalanceModesSupported; sl@0: sl@0: /** Minimum zoom value allowed. sl@0: sl@0: Must be negative, or zero if not supported. sl@0: sl@0: This is the minimum value that may be passed to CCamera::SetZoomFactorL(). */ sl@0: TInt iMinZoom; sl@0: /** Maximum zoom value allowed. sl@0: sl@0: Must be positive, or zero if not supported. sl@0: sl@0: This is the maximum value that may be passed to CCamera::SetZoomFactorL(). */ sl@0: TInt iMaxZoom; sl@0: /** Maximum digital zoom value allowed. sl@0: sl@0: Must be positive, or zero if not supported. sl@0: sl@0: This is the maximum value that may be passed to CCamera::SetDigitalZoomFactorL(). sl@0: Digital zoom factor is assumed to be a linear scale from 0 to iMaxDigitalZoom. */ sl@0: TInt iMaxDigitalZoom; sl@0: sl@0: /** Image size multiplier corresponding to minimum zoom value. sl@0: sl@0: Must be between 0 and 1 inclusive. Both 0 and 1 indicate that macro functionality sl@0: is not supported. */ sl@0: TReal32 iMinZoomFactor; sl@0: /** Image size multiplier corresponding to maximum zoom value. sl@0: sl@0: May take the value 0, or values greater than or equal to 1. Both 0 and 1 indicate sl@0: that zoom functionality is not supported. */ sl@0: TReal32 iMaxZoomFactor; sl@0: /** Image size multiplier corresponding to maximum digital zoom value. sl@0: sl@0: Implementation recommendation is to use 'appropriate value' for maximum digital zoom which could cover only values sl@0: given by new digital zoom methods based on image format and capture mode. sl@0: sl@0: Must be greater than or equal to 1. */ sl@0: TReal32 iMaxDigitalZoomFactor; sl@0: sl@0: /** Count of still image capture sizes allowed. sl@0: sl@0: Number of different image sizes that CCamera::EnumerateCaptureSizes() will sl@0: support, based on the index passed in. Index must be between 0 and iNumImageSizesSupported-1. */ sl@0: TInt iNumImageSizesSupported; sl@0: /** The supported still image formats. sl@0: sl@0: This is a bitfield of CCamera::TFormat values. */ sl@0: TUint32 iImageFormatsSupported; sl@0: sl@0: /** Count of video frame sizes allowed. sl@0: sl@0: This is the number of different video frame sizes that CCamera::EnumerateVideoFrameSizes() sl@0: will support, based on the specified index. The index must be between 0 and sl@0: iNumVideoFrameSizesSupported-1. */ sl@0: TInt iNumVideoFrameSizesSupported; sl@0: /** Count of video frame rates allowed. sl@0: sl@0: This is the number of different video frame rates that CCamera::EnumerateVideoFrameRates() sl@0: will support, based on the specified index. The index must be between 0 and sl@0: iNumVideoFrameRatesSupported-1. */ sl@0: TInt iNumVideoFrameRatesSupported; sl@0: /** The supported video frame formats. sl@0: sl@0: This is a bitfield of video frame CCamera::TFormat values. sl@0: sl@0: If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the sl@0: application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed sl@0: from the implementation should be filtered by the ECAM implementation. sl@0: To receive unrecognised/extra added enum values, the application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: to create the camera object. This is an indication to the ECAM implementation. In this case, the application is assumed sl@0: to be prepared to receive unrecognised enum values. sl@0: */ sl@0: TUint32 iVideoFrameFormatsSupported; sl@0: /** Maximum number of frames per buffer that may be requested. */ sl@0: TInt iMaxFramesPerBufferSupported; sl@0: /** Maximum number of buffers allowed */ sl@0: TInt iMaxBuffersSupported; sl@0: }; sl@0: sl@0: /** Mixin base class for camera clients. sl@0: sl@0: An application must implement an MCameraObserver or MCameraObserver2 (recommended) sl@0: in order to use the camera API. This derived class is called when the camera is sl@0: ready for use, an image has been captured or a buffer of video data is ready, including sl@0: when errors occur. sl@0: sl@0: Implementations of the camera API should use MCameraObserver::FrameBufferReady() sl@0: and MFrameBuffer::Release() to co-ordinate the mapping of any special memory sl@0: objects. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class MCameraObserver sl@0: { sl@0: public: sl@0: /** Camera reservation is complete. sl@0: sl@0: Called asynchronously when CCamera::Reserve() completes. sl@0: sl@0: @param aError sl@0: An error on failure and KErrNone on success. sl@0: */ sl@0: virtual void ReserveComplete(TInt aError)=0; sl@0: sl@0: /** Indicates camera power on is complete. sl@0: sl@0: Called on completion of CCamera:PowerOn(). sl@0: sl@0: @param aError sl@0: KErrNone on success, KErrInUse if the camera is in sl@0: use by another client or KErrNoMemory if insufficient system memory is available. sl@0: */ sl@0: virtual void PowerOnComplete(TInt aError)=0; sl@0: sl@0: /** Tests whether transfer of view finder data has completed. sl@0: sl@0: Called periodically in response to the use of CCamera::StartViewFinderBitmapsL(). sl@0: sl@0: @param aFrame sl@0: The view finder frame. sl@0: */ sl@0: virtual void ViewFinderFrameReady(CFbsBitmap& aFrame)=0; sl@0: sl@0: /** Transfers the current image from the camera to the client. sl@0: sl@0: Called asynchronously when CCamera::CaptureImage() completes. sl@0: sl@0: @param aBitmap sl@0: On return, a pointer to an image held in CFbsBitmap form if sl@0: this was the format specified in CCamera::PrepareImageCaptureL(). sl@0: @param aData sl@0: On return, a pointer to an HBufC8 if this was the format specified sl@0: in CCamera::PrepareImageCaptureL(). NULL if there was an error. sl@0: @param aError sl@0: KErrNone on success or an error code on failure. sl@0: */ sl@0: virtual void ImageReady(CFbsBitmap* aBitmap,HBufC8* aData,TInt aError)=0; sl@0: sl@0: /** Passes a filled frame buffer to the client. sl@0: sl@0: Called asynchronously, when a buffer has been filled with the required number sl@0: of video frames by CCamera::StartVideoCapture(). sl@0: sl@0: @param aFrameBuffer sl@0: On return, a pointer to an MFrameBuffer if successful, sl@0: or NULL if not successful. sl@0: @param aError sl@0: KErrNone if successful, or an error code if not successful. sl@0: */ sl@0: virtual void FrameBufferReady(MFrameBuffer* aFrameBuffer,TInt aError)=0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Class used for passing camera picture data between camera and client in the V2 observer. sl@0: Used for viewfinder, image capture and video capture. sl@0: sl@0: The class offers APIs for the client to access the data as a descriptor, a bitmap sl@0: or a handle to a kernel chunk. Depending on the format previously requested by sl@0: the client, one or more of the API choices may be inappropriate e.g. an image will sl@0: not be avaiable as a bitmap in the FBS unless the client has specifically requested sl@0: it. sl@0: sl@0: The buffer may contain multiple frames. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class MCameraBuffer sl@0: { sl@0: public: sl@0: /** sl@0: Returns the number of frames of image data contained within the buffer. This sl@0: would be 1 for a image capture, and match the requested count sl@0: for video capture. For other methods in this class that take a aFrameIndex sl@0: param, 0 <= aFrameIndex < NumFrames() sl@0: sl@0: @return The number of frames of image data in the buffer. sl@0: */ sl@0: virtual TInt NumFrames()=0; sl@0: /** sl@0: Returns a pointer to a descriptor containing a frame of camera data. The format sl@0: will have been previously specified by a CCamera class method. sl@0: sl@0: @param aFrameIndex sl@0: The index of the required frame. For a still image this should be 0. sl@0: sl@0: @leave KErrArgument if aIndex is out of range and sl@0: @leave KErrNotSupported if the camera data is actually bitmaps in the FBS. sl@0: sl@0: @return A pointer to a descriptor containing a frame of image data. sl@0: */ sl@0: virtual TDesC8* DataL(TInt aFrameIndex)=0; sl@0: sl@0: /** sl@0: Returns a reference to a FBS bitmap containing a frame of image data. sl@0: sl@0: @param aFrameIndex sl@0: The index of the required frame. For a still image this should be 0. sl@0: sl@0: @leave KErrArgument if aIndex is out of range and sl@0: @leave KErrNotSupported if the picture data is not a FBS bitmap. sl@0: sl@0: @return A reference to a FBS bitmap containing a frame of picture data. sl@0: */ sl@0: virtual CFbsBitmap& BitmapL(TInt aFrameIndex)=0; sl@0: sl@0: /** sl@0: Returns a handle for the chunk that contains the camera data. sl@0: The RChunk is exposed so that it can potentially be shared between multiple sl@0: processes. sl@0: The ptr returned by DataL(aFrameIndex) is effectively derived from this sl@0: RChunk (where both are supported simulataneously). The equivalent ptr would be: sl@0: TPtrC8* ptr; sl@0: ptr.Set(ChunkL().Base() + ChunkOffset(aFrameIndex), FrameSize(aFrameIndex)); sl@0: sl@0: @leave KErrNotSupported if the chunk is not available. sl@0: sl@0: @return A reference to a handle to the chunk that contains the buffer of picture data. sl@0: */ sl@0: virtual RChunk& ChunkL()=0; sl@0: sl@0: /** sl@0: Returns the offset into the chunk that contains the frame specified by aFrameIndex. sl@0: The client would add this offset to the ptr returned by ChunkL().Base() to sl@0: get the address of the start of the frame data. sl@0: sl@0: @param aIndex sl@0: The index of the required frame. For a still image this should be 0. sl@0: sl@0: @leave KErrNotSupported if the chunk is not available sl@0: @leave KErrArgument if aIndex is out of range. sl@0: sl@0: @return The offset into the chunk for the start of the frame. sl@0: */ sl@0: virtual TInt ChunkOffsetL(TInt aFrameIndex)=0; sl@0: sl@0: /** sl@0: Returns the size of the data in bytes that comprises the frame specified by aIndex. sl@0: sl@0: @param aFrameIndex sl@0: The index of the required frame. For a still image this should be 0. sl@0: sl@0: @leave KErrArgument sl@0: if aIndex is out of range. sl@0: sl@0: @return Returns the size of the data in bytes that comprises the frame. sl@0: */ sl@0: virtual TInt FrameSize(TInt aFrameIndex)=0; sl@0: sl@0: /** sl@0: Releases the buffer. Once the client has processed sl@0: the picture data it should use this method to signal to CCamera that the sl@0: buffer can be re-used. sl@0: */ sl@0: virtual void Release()=0; sl@0: public: sl@0: sl@0: /** sl@0: Sequential frame number of the first frame in the buffer, counting from when sl@0: CCamera::StartVideoCapture() was called and including frames dropped due to sl@0: lack of buffers. Always zero for still images. May also be used by client viewfinders. sl@0: */ sl@0: TInt iIndexOfFirstFrameInBuffer; sl@0: sl@0: /** sl@0: Time elapsed from when CCamera::StartVideoCapture() was called until the first sl@0: frame in the buffer was captured. Always zero for still images. sl@0: */ sl@0: TTimeIntervalMicroSeconds iElapsedTime; sl@0: }; sl@0: sl@0: /** sl@0: Uid used to identify the event that the request to Reserve() has completed sl@0: */ sl@0: static const TUid KUidECamEventReserveComplete = {0x101F7D3B}; sl@0: sl@0: /** sl@0: Uid used to identify the event that the request to PowerOn() has completed sl@0: */ sl@0: static const TUid KUidECamEventPowerOnComplete = {0x101F7D3C}; sl@0: sl@0: /** sl@0: Uid used to identify the event that the client has lost sl@0: control of the camera sl@0: */ sl@0: static const TUid KUidECamEventCameraNoLongerReserved = {0x101F7D3D}; sl@0: sl@0: /** sl@0: Uid used to notify the client who made the new reserve request. sl@0: sl@0: Error value KErrECamHighPriorityReserveRequesterExists indicates another such reserve request is outstanding and sl@0: has higher priority than this one. sl@0: Error value KErrCancel indicates a new reserve requester with higher priority than the current requester has sl@0: been made. That's why, this one got cancelled. sl@0: Any other error may also occur. sl@0: @see CCamera::CCameraAdvancedSettings::ReserveL(const TTimeIntervalMicroseconds32& aMaxTimeToWait, TBool aKickOut); sl@0: */ sl@0: static const TUid KUidECamEventNewReserveComplete = {KUidECamEventNewReserveCompleteUidValue}; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: General purpose class to describe an ECam event. sl@0: sl@0: Contains a UID to define the actual event type, and an integer to define the event code. sl@0: sl@0: */ sl@0: sl@0: class TECAMEvent sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: Constructor. sl@0: sl@0: @param aEventType sl@0: A UID to define the type of event. sl@0: @param aErrorCode sl@0: The error code associated with the event. sl@0: sl@0: */ sl@0: IMPORT_C TECAMEvent(TUid aEventType, TInt aErrorCode); sl@0: sl@0: /** sl@0: Default constructor. sl@0: sl@0: Provided so this class can be packaged in a TPckgBuf<>. sl@0: */ sl@0: IMPORT_C TECAMEvent(); sl@0: sl@0: /** sl@0: A UID to define the event type. sl@0: */ sl@0: TUid iEventType; sl@0: sl@0: /** sl@0: The error code associated with the event. sl@0: */ sl@0: TInt iErrorCode; sl@0: }; sl@0: sl@0: /** sl@0: Uid used to identify a particular version of TECAMEvent base class being used i.e. TECAMEvent2 . sl@0: Useful for MCameraObserver2::HandleEvent implementation to detect the version of TECAMEvent base class. sl@0: */ sl@0: static const TUid KUidECamEventClass2 = {KUidECamEventClass2UidValue}; sl@0: sl@0: /** sl@0: event indicating setting of color entry in the color swap operation. This is a part of class CCamera::CCameraImageProcessing. sl@0: This event should be packed in TECAMEvent2 class. sl@0: sl@0: @note TECAMEvent2::iParam represents color entry. sl@0: */ sl@0: static const TUid KUidECamEventCIPSetColorSwapEntry = {KUidECamEventCIPSetColorSwapEntryUidValue}; sl@0: static const TUid KUidECamEvent2CIPSetColorSwapEntry = {KUidECamEventCIPSetColorSwapEntryUidValue}; sl@0: sl@0: /** sl@0: event indicating removal of color entry in the color swap operation. This is a part of class CCamera::CCameraImageProcessing. sl@0: This event should be packed in TECAMEvent2 class. sl@0: sl@0: @note TECAMEvent2::iParam represents color entry. sl@0: */ sl@0: static const TUid KUidECamEventCIPRemoveColorSwapEntry = {KUidECamEventCIPRemoveColorSwapEntryUidValue}; sl@0: static const TUid KUidECamEvent2CIPRemoveColorSwapEntry = {KUidECamEventCIPRemoveColorSwapEntryUidValue}; sl@0: sl@0: /** sl@0: event indicating setting of color entry in the color accent operation. This is a part of class CCamera::CCameraImageProcessing. sl@0: This event should be packed in TECAMEvent2 class. sl@0: sl@0: @note TECAMEvent2::iParam represents color entry. sl@0: */ sl@0: static const TUid KUidECamEventCIPSetColorAccentEntry = {KUidECamEventCIPSetColorAccentEntryUidValue}; sl@0: static const TUid KUidECamEvent2CIPSetColorAccentEntry = {KUidECamEventCIPSetColorAccentEntryUidValue}; sl@0: sl@0: /** sl@0: event indicating removal of color entry in the color accent operation. This is a part of class CCamera::CCameraImageProcessing. sl@0: This event should be packed in TECAMEvent2 class. sl@0: sl@0: @note TECAMEvent2::iParam represents color entry. sl@0: */ sl@0: static const TUid KUidECamEventCIPRemoveColorAccentEntry = {KUidECamEventCIPRemoveColorAccentEntryUidValue}; sl@0: static const TUid KUidECamEvent2CIPRemoveColorAccentEntry = {KUidECamEventCIPRemoveColorAccentEntryUidValue}; sl@0: sl@0: /** sl@0: event indicating issue of pre capture warnings. This is a part of class CCamera::CCameraAdvancedSettings. sl@0: This event should be packed in TECAMEvent2 class. sl@0: sl@0: This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera:: sl@0: NewDuplicate2L():- sl@0: void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray& aSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray& aActiveSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray& aDisabledSettings) const; sl@0: sl@0: @note TECAMEvent2::iParam represents bit field describing all PreCaptureWarnings currently issued. sl@0: */ sl@0: static const TUid KUidECamEventCameraSettingPreCaptureWarning = {KUidECamEventCameraSettingPreCaptureWarningUidValue}; sl@0: static const TUid KUidECamEvent2CameraSettingPreCaptureWarning = {KUidECamEventCameraSettingPreCaptureWarningUidValue}; sl@0: sl@0: /** sl@0: Special type of TECAMEvent class used to retrieve some extra information from particular events received sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TECAMEvent2 : public TECAMEvent sl@0: { sl@0: public: sl@0: sl@0: IMPORT_C static TBool IsEventEncapsulationValid(const TECAMEvent& aECAMEvent); sl@0: sl@0: IMPORT_C TECAMEvent2(TUid aEventType, TInt aErrorCode, TInt aParam); sl@0: sl@0: IMPORT_C const TUid& EventClassUsed() const; sl@0: sl@0: private: sl@0: /** sl@0: Uid representing this version of TECAMEvent base class. Uid used is KUidECamEventClass2 sl@0: */ sl@0: TUid iEventClassUsed; sl@0: sl@0: /** sl@0: Reserved for future sl@0: TInt iReserved1; -> Made Public TInt iParam1 sl@0: */ sl@0: sl@0: /** sl@0: Reserved for future sl@0: */ sl@0: TInt iReserved2; sl@0: sl@0: sl@0: public: sl@0: /** sl@0: iParam1 will be used to provide extra information if iParam is not sufficient. sl@0: This signifies different things for different valid events. sl@0: sl@0: Future events may also use this class member variable. sl@0: */ sl@0: TInt iParam1; sl@0: sl@0: /** sl@0: This signifies different things for different valid events. sl@0: sl@0: Future events may also use this class member variable. sl@0: */ sl@0: TInt iParam; sl@0: }; sl@0: sl@0: /** Mixin base class V2 for camera clients. sl@0: sl@0: An application must implement an MCameraObserver2 (or MCameraObserver) in order to use the camera sl@0: API. This derived class is called when the camera is ready for use, an image sl@0: has been captured or a buffer of video data is ready, including when errors sl@0: occur. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: class MCameraObserver2 sl@0: { sl@0: public: sl@0: /** sl@0: A camera event has completed. sl@0: @note Implementations of MCameraObserver2 should ignore events which are not recognised and should not leave. sl@0: sl@0: @param aEvent sl@0: A reference to a TECAMEvent. This can be completion of a call to Reserve() sl@0: or a call to PowerOn() or a notification that the client has lost control sl@0: of the camera. sl@0: The event contains a uid identifying the event and an accompanying sl@0: error code (KErrNone for the successful completion of a request). sl@0: The error will be KErrNotReady for a request that was made out of the sl@0: correct sequence. sl@0: The error will be KErrAccessDenied for a Reserve() request that failed sl@0: because a higher priority client already controls the camera. sl@0: sl@0: @note This may internally call TECAMEvent2::IsEventEncapsulationValid(aEvent) and also for any other derived version of TECAMEvent sl@0: class to know whether correct version of TECAMEvent base class has been used. sl@0: */ sl@0: virtual void HandleEvent(const TECAMEvent& aEvent)=0; sl@0: sl@0: /** sl@0: Notifies client of new view finder data. Called periodically in response to sl@0: the use of CCamera::StartViewFinderL(). sl@0: sl@0: @param aCameraBuffer sl@0: A reference to an MCameraBuffer if successful, or NULL if not successful. sl@0: sl@0: @param aError sl@0: KErrNone if successful, or an error code if not successful. sl@0: */ sl@0: virtual void ViewFinderReady(MCameraBuffer& aCameraBuffer,TInt aError)=0; sl@0: sl@0: /** sl@0: Notifies the client of a new captured camera image. Called asynchronously sl@0: when CCamera::CaptureImage() completes. sl@0: sl@0: @param aCameraBuffer sl@0: A reference to an MCameraBuffer if successful, or NULL if not successful. sl@0: sl@0: @param aError sl@0: KErrNone if successful, or an error code if not successful. sl@0: sl@0: @note If new image capture classes used, then this callback will not be used. Refer MCaptureImageObserver sl@0: */ sl@0: virtual void ImageBufferReady(MCameraBuffer& aCameraBuffer,TInt aError)=0; sl@0: sl@0: /** sl@0: Notifies the client of new captured video. Called asynchronously and periodically sl@0: after CCamera::StartVideoCapture() is called. The buffer has been filled with the sl@0: required number of video frames specified PrepareVideoCaptureL(). sl@0: sl@0: @param aCameraBuffer sl@0: A reference to an MCameraBuffer if successful, or NULL if not successful. sl@0: sl@0: @param aError sl@0: KErrNone if successful, or an error code if not successful. sl@0: */ sl@0: virtual void VideoBufferReady(MCameraBuffer& aCameraBuffer,TInt aError)=0; sl@0: }; sl@0: sl@0: sl@0: /** Base class for camera devices. sl@0: sl@0: Provides the interface that an application uses to control, and acquire images sl@0: from, the camera. sl@0: sl@0: An application must supply an implementation of MCameraObserver2 (or MCameraObserver). sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class CCamera : public CBase sl@0: sl@0: { sl@0: sl@0: friend class CCameraPlugin; sl@0: sl@0: public: sl@0: class CCameraPresets; sl@0: class CCameraAdvancedSettings; sl@0: class CCameraImageProcessing; sl@0: class CCameraHistogram; sl@0: class CCameraV2Histogram; sl@0: class CCameraOverlay; sl@0: class CCameraSnapshot; sl@0: class CCameraDirectViewFinder; sl@0: class CCameraV2DirectViewFinder; sl@0: class CCameraClientViewFinder; sl@0: class CCameraPreImageCaptureControl; sl@0: class CCameraImageCapture; sl@0: class CCameraPostImageCaptureControl; sl@0: class CCameraVideoCaptureControl; sl@0: class CCameraDirectSnapshot; sl@0: class CCameraContinuousZoom; sl@0: sl@0: public: sl@0: /** Possible still image and video frame formats sl@0: sl@0: Formats are read from left to right, starting at the top of the image. YUV sl@0: format is as defined by ITU-R BT.601-4. */ sl@0: enum TFormat sl@0: { sl@0: /** 8 bit greyscale values, 0=black, 255=white. */ sl@0: EFormatMonochrome = 0x0001, sl@0: /** Packed RGB triplets, 4 bits per pixel with red in the least significant bits sl@0: and the 4 most significant bits unused. */ sl@0: EFormat16bitRGB444 = 0x0002, sl@0: /** Packed RGB triplets, 5 bits per pixel for red and blue and 6 bits for green, sl@0: with red in the least significant bits. */ sl@0: EFormat16BitRGB565 = 0x0004, sl@0: /** Packed RGB triplets, 8 bits per pixel with red in the least significant bits sl@0: and the 8 most significant bits unused. */ sl@0: EFormat32BitRGB888 = 0x0008, sl@0: /** JFIF JPEG. */ sl@0: EFormatJpeg = 0x0010, sl@0: /** EXIF JPEG */ sl@0: EFormatExif = 0x0020, sl@0: /** CFbsBitmap object with display mode EColor4K. */ sl@0: EFormatFbsBitmapColor4K = 0x0040, sl@0: /** CFbsBitmap object with display mode EColor64K. */ sl@0: EFormatFbsBitmapColor64K = 0x0080, sl@0: /** CFbsBitmap object with display mode EColor16M. */ sl@0: EFormatFbsBitmapColor16M = 0x0100, sl@0: /** Implementation dependent. */ sl@0: EFormatUserDefined = 0x0200, sl@0: /** 4:2:0 format, 8 bits per sample, Y00Y01Y10Y11UV. */ sl@0: EFormatYUV420Interleaved = 0x0400, sl@0: /** 4:2:0 format, 8 bits per sample, Y00Y01Y02Y03...U0...V0... */ sl@0: EFormatYUV420Planar = 0x0800, sl@0: /** 4:2:2 format, 8 bits per sample, UY0VY1. Maps to Graphics' EUidPixelFormatYUV_422Interleaved in pixelformats.h. */ sl@0: EFormatYUV422 = 0x1000, sl@0: /** 4:2:2 format, 8 bits per sample, Y1VY0U. Maps to Graphics' EUidPixelFormatYUV_422InterleavedReversed in pixelformats.h. */ sl@0: EFormatYUV422Reversed = 0x2000, sl@0: /** 4:4:4 format, 8 bits per sample, Y00U00V00 Y01U01V01... */ sl@0: EFormatYUV444 = 0x4000, sl@0: /** 4:2:0 format, 8 bits per sample, Y00Y01Y02Y03...U0V0... */ sl@0: EFormatYUV420SemiPlanar = 0x8000, sl@0: /** CFbsBitmap object with display mode EColor16MU. */ sl@0: EFormatFbsBitmapColor16MU = 0x00010000, sl@0: /** Motion JPEG for video sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L(). sl@0: @internalTechnology sl@0: */ sl@0: EFormatMJPEG = 0x00020000, sl@0: sl@0: /** sl@0: Compressed H264 video format. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L(). sl@0: @prototype sl@0: */ sl@0: EFormatEncodedH264 = 0x00040000, sl@0: sl@0: /** sl@0: 4:2:2 format, 8 bits per sample, Y0UY1V. Maps to Graphics' EUidPixelFormatYUV_422Reversed in pixelformats.h. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L(). sl@0: @prototype sl@0: */ sl@0: EFormatYUV222ReversedV2 = 0x00080000 sl@0: }; sl@0: sl@0: /** Specifies whether contrast is set automatically. */ sl@0: enum TContrast sl@0: { sl@0: /** Sets the contrast automatically. */ sl@0: EContrastAuto = KMinTInt sl@0: }; sl@0: /** Specifies whether brightness is set automatically. */ sl@0: enum TBrightness sl@0: { sl@0: /** Sets the brightness automatically. */ sl@0: EBrightnessAuto = KMinTInt sl@0: }; sl@0: /** Specifies the type of flash. */ sl@0: enum TFlash sl@0: { sl@0: /** No flash, always supported. */ sl@0: EFlashNone = 0x0000, sl@0: /** Flash will automatically fire when required. */ sl@0: EFlashAuto = 0x0001, sl@0: /** Flash will always fire. */ sl@0: EFlashForced = 0x0002, sl@0: /** Reduced flash for general lighting */ sl@0: EFlashFillIn = 0x0004, sl@0: /** Red-eye reduction mode. */ sl@0: EFlashRedEyeReduce = 0x0008, sl@0: /** Flash at the moment when shutter opens. */ sl@0: EFlashSlowFrontSync = 0x0010, sl@0: /** Flash at the moment when shutter closes. */ sl@0: EFlashSlowRearSync = 0x0020, sl@0: /** User configurable setting */ sl@0: EFlashManual = 0x0040, sl@0: /** Constant emission of light during video mode sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EFlashVideoLight = 0x0080 sl@0: }; sl@0: /** Specifies the type of exposure. - EExposureAuto is the default value. */ sl@0: enum TExposure sl@0: { sl@0: /** Set exposure automatically. Default, always supported. sl@0: This may imply auto aperture so clients may receive a KUidEcamEvent2CameraSettingAutoAperture event notification some time later. */ sl@0: EExposureAuto = 0x0000, sl@0: /** Night-time setting for long exposures. */ sl@0: EExposureNight = 0x0001, sl@0: /** Backlight setting for bright backgrounds. */ sl@0: EExposureBacklight = 0x0002, sl@0: /** Centered mode for ignoring surroundings. */ sl@0: EExposureCenter = 0x0004, sl@0: /** Sport setting for very short exposures. */ sl@0: EExposureSport = 0x0008, sl@0: /** Generalised setting for very long exposures. */ sl@0: EExposureVeryLong = 0x0010, sl@0: /** Snow setting for daylight exposure. */ sl@0: EExposureSnow = 0x0020, sl@0: /** Beach setting for daylight exposure with reflective glare. */ sl@0: EExposureBeach = 0x0040, sl@0: /** Programmed exposure setting. */ sl@0: EExposureProgram = 0x0080, sl@0: /** Aperture setting is given priority. */ sl@0: EExposureAperturePriority = 0x0100, sl@0: /** Shutter speed setting is given priority. sl@0: This may imply auto aperture so clients may receive a KUidEcamEvent2CameraSettingAutoAperture event notification some time later. */ sl@0: EExposureShutterPriority = 0x0200, sl@0: /** User selectable exposure value setting. */ sl@0: EExposureManual = 0x0400, sl@0: /** Exposure night setting with colour removed to get rid of colour noise. */ sl@0: EExposureSuperNight = 0x0800, sl@0: /** Exposure for infra-red sensor on the camera */ sl@0: EExposureInfra = 0x1000 sl@0: }; sl@0: sl@0: /** Specifies how the white balance is set. */ sl@0: enum TWhiteBalance sl@0: { sl@0: /** Set white balance automatically. Default, always supported. */ sl@0: EWBAuto = 0x0000, sl@0: /** Normal daylight. */ sl@0: EWBDaylight = 0x0001, sl@0: /** Overcast daylight. */ sl@0: EWBCloudy = 0x0002, sl@0: /** Tungsten filament lighting. */ sl@0: EWBTungsten = 0x0004, sl@0: /** Fluorescent tube lighting */ sl@0: EWBFluorescent = 0x0008, sl@0: /** Flash lighting. */ sl@0: EWBFlash = 0x0010, sl@0: /** High contrast daylight primarily snowy */ sl@0: EWBSnow = 0x0020, sl@0: /** High contrast daylight primarily near the sea */ sl@0: EWBBeach = 0x0040, sl@0: /** User configurable mode */ sl@0: EWBManual = 0x0080, sl@0: /** Shade */ sl@0: EWBShade = 0x0100, sl@0: /** auto skin sl@0: sl@0: If New2L()/NewDuplicate2L() are not used to create camera object, this sl@0: enum value would be considered as unrecognized and filtered out in 'supported' sl@0: or 'getter' methods. sl@0: */ sl@0: EWBAutoSkin = 0x0200, sl@0: /** horizon sl@0: sl@0: If New2L()/NewDuplicate2L() are not used to create camera object, this sl@0: enum value would be considered as unrecognized and filtered out in 'supported' sl@0: or 'getter' methods. sl@0: */ sl@0: EWBHorizon = 0x0400, sl@0: /** Daylight Under Water sl@0: sl@0: If New2L()/NewDuplicate2L() are not used to create camera object, this sl@0: enum value would be considered as unrecognized and filtered out in 'supported' sl@0: or 'getter' methods. sl@0: */ sl@0: EWBDaylightUnderWater = 0x0800 sl@0: }; sl@0: sl@0: public: sl@0: /** sl@0: Determines the number of cameras on the device. sl@0: sl@0: @return Count of cameras present on the device. sl@0: */ sl@0: IMPORT_C static TInt CamerasAvailable(); sl@0: sl@0: /** sl@0: @deprecated Use static CCamera* New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority); sl@0: sl@0: Creates an object representing a camera. sl@0: sl@0: @param aObserver sl@0: Reference to class derived from MCameraObserver2 designed to receive sl@0: notification of asynchronous event completion. sl@0: @param aCameraIndex sl@0: Index from 0 to CamerasAvailable()-1 inclusive specifying the sl@0: camera device to use. sl@0: @param aPriority sl@0: Value from -100 to 100 indicating relative priority of client to sl@0: use camera. sl@0: sl@0: @return Pointer to a fully constructed CCamera object. Ownership is passed sl@0: to the caller. sl@0: sl@0: @leave KErrNoMemory if out of memory. sl@0: @leave KErrNotSupported if aCameraIndex is out of range. sl@0: @leave KErrPermissionDenied if the application does not have sl@0: the UserEnvironment capability. sl@0: sl@0: @capability UserEnvironment sl@0: An application that creates a CCamera object must have sl@0: the UserEnvironment capability. sl@0: sl@0: @capability MultimediaDD sl@0: A process requesting or using this method that has MultimediaDD capability will sl@0: always have precedence over a process that does not have MultimediaDD. sl@0: sl@0: @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined). sl@0: To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare sl@0: themselves to receive unrecognised values. sl@0: */ sl@0: IMPORT_C static CCamera* NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority); sl@0: sl@0: /** sl@0: Creates an object representing a camera. sl@0: Clients prepare themselves to receive unrecognised enum, uids etc. sl@0: sl@0: @param aObserver sl@0: Reference to class derived from MCameraObserver2 designed to receive sl@0: notification of asynchronous event completion. sl@0: @param aCameraIndex sl@0: Index from 0 to CamerasAvailable()-1 inclusive specifying the sl@0: camera device to use. sl@0: @param aPriority sl@0: Value from -100 to 100 indicating relative priority of client to sl@0: use camera. sl@0: sl@0: @return Pointer to a fully constructed CCamera object. Ownership is passed sl@0: to the caller. sl@0: sl@0: @leave KErrNoMemory if out of memory. sl@0: @leave KErrNotSupported if aCameraIndex is out of range. sl@0: @leave KErrPermissionDenied if the application does not have sl@0: the UserEnvironment capability. sl@0: sl@0: @capability UserEnvironment sl@0: An application that creates a CCamera object must have sl@0: the UserEnvironment capability. sl@0: sl@0: @capability MultimediaDD sl@0: A process requesting or using this method that has MultimediaDD capability will sl@0: always have precedence over a process that does not have MultimediaDD. sl@0: sl@0: @note Clients using this creation method should prepare themselves to receive any unrecognised enum values, uids sl@0: from 'supported' or 'getter' methods sl@0: */ sl@0: IMPORT_C static CCamera* New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority); sl@0: sl@0: /** sl@0: Creates an object representing a camera. sl@0: sl@0: @param aObserver sl@0: Reference to class derived from MCameraObserver designed to receive sl@0: notification of asynchronous event completion. sl@0: @param aCameraIndex sl@0: Index from 0 to CamerasAvailable()-1 inclusive specifying the sl@0: camera device to use. sl@0: sl@0: @leave KErrNoMemory if out of memory. sl@0: @leave KErrNotSupported if aCameraIndex is out of range. sl@0: @leave KErrPermissionDenied if the application does not have sl@0: the UserEnvironment capability. sl@0: sl@0: @return Pointer to a fully constructed CCamera object. Ownership is passed sl@0: to the caller. sl@0: sl@0: @capability UserEnvironment sl@0: An application that creates a CCamera object must have sl@0: the UserEnvironment capability. sl@0: sl@0: @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined). sl@0: To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare sl@0: themselves to receive unrecognised values. sl@0: */ sl@0: IMPORT_C static CCamera* NewL(MCameraObserver& aObserver,TInt aCameraIndex); sl@0: sl@0: /** sl@0: @deprecated Use static CCamera* NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle); sl@0: sl@0: Duplicates the original camera object for use by, for example, multimedia systems. sl@0: sl@0: May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid. sl@0: sl@0: @param aObserver sl@0: Reference to an observer. sl@0: @param aCameraHandle Handle of an existing camera object. sl@0: sl@0: @leave KErrNoMemory if out of memory. sl@0: @leave KErrNotFound if aCameraHandle is not valid. sl@0: @leave KErrPermissionDenied if the application does not have sl@0: the UserEnvironment capability. sl@0: sl@0: @return Duplicate of the original camera object. sl@0: sl@0: @capability UserEnvironment sl@0: An application that creates a CCamera object must have sl@0: the UserEnvironment capability. sl@0: sl@0: @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined). sl@0: To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare sl@0: themselves to receive unrecognised values. sl@0: */ sl@0: IMPORT_C static CCamera* NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle); sl@0: sl@0: /** sl@0: Duplicates the original camera object for use by, for example, multimedia systems. sl@0: Clients prepare themselves to receive unrecognised enum, uids etc. sl@0: sl@0: May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid. sl@0: sl@0: @param aObserver sl@0: Reference to an observer. sl@0: @param aCameraHandle Handle of an existing camera object. sl@0: sl@0: @leave KErrNoMemory if out of memory. sl@0: @leave KErrNotFound if aCameraHandle is not valid. sl@0: @leave KErrPermissionDenied if the application does not have sl@0: the UserEnvironment capability. sl@0: sl@0: @return Duplicate of the original camera object. sl@0: sl@0: @capability UserEnvironment sl@0: An application that creates a CCamera object must have sl@0: the UserEnvironment capability. sl@0: sl@0: @note Clients using this creation method should prepare themselves to receive any unrecognised enum values, uids sl@0: from 'supported' or 'getter' methods sl@0: */ sl@0: IMPORT_C static CCamera* NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle); sl@0: sl@0: /** sl@0: Duplicates the original camera object for use by, for example, multimedia systems. sl@0: sl@0: @leave KErrNoMemory if out of memory. sl@0: @leave KErrNotFound if aCameraHandle is not valid. sl@0: @leave KErrPermissionDenied if the application does not have sl@0: the UserEnvironment capability. sl@0: sl@0: @param aObserver sl@0: Reference to an observer. sl@0: @param aCameraHandle Handle of an existing camera object. sl@0: sl@0: @return Duplicate of the original camera object. sl@0: sl@0: @capability UserEnvironment sl@0: An application that creates a CCamera object must have sl@0: the UserEnvironment capability. sl@0: sl@0: @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined). sl@0: To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare sl@0: themselves to receive unrecognised values. sl@0: */ sl@0: IMPORT_C static CCamera* NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle); sl@0: sl@0: /** sl@0: Gets information about the camera device. sl@0: sl@0: @param aInfo sl@0: On return, information about the camera device. See TCameraInfo. sl@0: */ sl@0: virtual void CameraInfo(TCameraInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Asynchronous function that performs any required initialisation and reserves sl@0: the camera for exclusive use. sl@0: sl@0: Calls MCameraObserver:: ReserveComplete() when complete. sl@0: */ sl@0: virtual void Reserve()=0; sl@0: sl@0: /** sl@0: De-initialises the camera, allowing it to be used by other clients. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Asynchronous method to switch on camera power. sl@0: sl@0: User must have successfully called Reserve() prior to calling this function. sl@0: sl@0: Calls MCameraObserver::PowerOnComplete() when power on is complete. sl@0: */ sl@0: virtual void PowerOn()=0; sl@0: sl@0: /** sl@0: Synchronous function for switching off camera power. sl@0: */ sl@0: virtual void PowerOff()=0; sl@0: sl@0: /** sl@0: Gets the device-unique handle of this camera object. sl@0: sl@0: @return The device-unique handle of this camera object. sl@0: */ sl@0: virtual TInt Handle()=0; sl@0: sl@0: /** sl@0: Sets the zoom factor. sl@0: sl@0: This must be in the range of TCameraInfo::iMinZoom to TCameraInfo::iMaxZoom sl@0: inclusive. May leave with KErrNotSupported if the specified zoom factor is sl@0: out of range. sl@0: sl@0: @param aZoomFactor sl@0: Required zoom factor. sl@0: */ sl@0: virtual void SetZoomFactorL(TInt aZoomFactor = 0)=0; sl@0: sl@0: /** sl@0: Gets the currently set zoom factor. sl@0: sl@0: @return The currently set zoom factor. sl@0: */ sl@0: virtual TInt ZoomFactor() const=0; sl@0: sl@0: /** sl@0: Sets the digital zoom factor. sl@0: sl@0: This must be in the range of 0 to TCameraInfo::iMaxDigitalZoom inclusive. sl@0: sl@0: May leave with KErrNotSupported if the zoom factor is out of range. sl@0: sl@0: @param aDigitalZoomFactor sl@0: The required digital zoom factor. sl@0: */ sl@0: virtual void SetDigitalZoomFactorL(TInt aDigitalZoomFactor = 0)=0; sl@0: sl@0: /** sl@0: Gets the currently set digital zoom factor. sl@0: sl@0: @return The currently set digital zoom factor. sl@0: */ sl@0: virtual TInt DigitalZoomFactor() const=0; sl@0: sl@0: /** sl@0: Sets the contrast adjustment of the device. sl@0: sl@0: This must be in the range of -100 to +100 or EContrastAuto. May leave with sl@0: KErrNotSupported if the specified contrast value is out of range. sl@0: sl@0: @param aContrast sl@0: Required contrast value. See TCameraInfo::iContrastSupported sl@0: */ sl@0: virtual void SetContrastL(TInt aContrast)=0; sl@0: sl@0: /** sl@0: Gets the currently set contrast value. sl@0: sl@0: @return The currently set contrast value. sl@0: */ sl@0: virtual TInt Contrast() const=0; sl@0: sl@0: /** sl@0: Sets the brightness adjustment of the device. sl@0: sl@0: No effect if this is not supported, see TCameraInfo::iBrightnessSupported. sl@0: sl@0: This must be in the range of -100 to +100 or EBrightnessAuto. May leave sl@0: with KErrNotSupported if the brightness adjustment is out of range. sl@0: sl@0: @param aBrightness sl@0: The required brightness adjustment. sl@0: */ sl@0: virtual void SetBrightnessL(TInt aBrightness)=0; sl@0: sl@0: /** sl@0: Gets the currently set brightness adjustment value. sl@0: sl@0: @return The currently set brightness adjustment value. sl@0: */ sl@0: virtual TInt Brightness() const=0; sl@0: sl@0: /** sl@0: Sets the flash mode. sl@0: sl@0: No effect if this is not supported, see TCameraInfo::iFlashModesSupported. sl@0: sl@0: May leave with KErrNotSupported if the specified flash mode is invalid. sl@0: sl@0: @param aFlash sl@0: The required flash mode. sl@0: */ sl@0: virtual void SetFlashL(TFlash aFlash = EFlashNone)=0; sl@0: sl@0: /** sl@0: Gets the currently set flash mode. sl@0: sl@0: @return The currently set flash mode. sl@0: @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that sl@0: application is not prepared to receive extra added enum values (unrecognised). So, any extra enum value(unrecognised) sl@0: (set in the ECAM implementation because of sharing clients) should not be returned from the ECAM implementation. sl@0: To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: to create camera object. ECAM implementation, after verifying this,(by checking version no.) may send new values, if set. sl@0: In this case, application is assumed to be prepared to receive unrecognised enum values. sl@0: sl@0: @see CCamera::CCameraAdvancedSettings::FlashMode() sl@0: */ sl@0: virtual TFlash Flash() const=0; sl@0: sl@0: /** sl@0: Sets the exposure adjustment of the device. sl@0: sl@0: No effect if this is not supported, see CameraInfo::iExposureModesSupported. sl@0: sl@0: May leave with KErrNotSupported if the specified exposure adjustment is invalid. sl@0: sl@0: @param aExposure sl@0: The required exposure adjustment. sl@0: */ sl@0: virtual void SetExposureL(TExposure aExposure = EExposureAuto)=0; sl@0: sl@0: /** sl@0: Gets the currently set exposure setting value. sl@0: sl@0: @return The currently set exposure setting value. sl@0: */ sl@0: virtual TExposure Exposure() const=0; sl@0: sl@0: /** sl@0: Sets the white balance adjustment of the device. sl@0: sl@0: No effect if this is not supported, see TCameraInfo::iWhiteBalanceModesSupported. sl@0: sl@0: @param aWhiteBalance sl@0: The required white balance adjustment. sl@0: sl@0: @leave KErrNotSupported if the specified white balance adjustment sl@0: is invalid. sl@0: */ sl@0: virtual void SetWhiteBalanceL(TWhiteBalance aWhiteBalance = EWBAuto)=0; sl@0: sl@0: /** sl@0: Gets the currently set white balance adjustment value. sl@0: sl@0: @return The currently set white balance adjustment value. sl@0: sl@0: @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that sl@0: application is not prepared to receive extra added enum values (unrecognised). So, any extra enum value(unrecognised) sl@0: (set in the ECAM implementation because of sharing clients) should not be returned from the ECAM implementation. sl@0: To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: to create camera object. ECAM implementation, after verifying this,(by checking version no.) may send new values, if set. sl@0: In this case, application is assumed to be prepared to receive unrecognised enum values. sl@0: Refer CCamera::CCameraAdvancedSettings::WhiteBalanceMode() implementation sl@0: sl@0: @see CCamera::CCameraAdvancedSettings::WhiteBalanceMode() sl@0: */ sl@0: virtual TWhiteBalance WhiteBalance() const=0; sl@0: sl@0: /** sl@0: Starts transfer of view finder data to the given portion of the screen using sl@0: direct screen access. sl@0: sl@0: The aScreenRect parameter is in screen co-ordinates and may be modified if, sl@0: eg, the camera requires the destination to have a certain byte alignment, etc. sl@0: sl@0: @param aWs sl@0: Window server session. sl@0: @param aScreenDevice sl@0: Screen device. sl@0: @param aWindow sl@0: Displayable window. sl@0: @param aScreenRect sl@0: Portion of the screen to which view finder data is to be sl@0: transferred. This is in screen co-ordinates and may be modified if, for example, sl@0: the camera requires the destination to have a certain byte alignment. sl@0: sl@0: @leave KErrNotReady if PowerOn() has either not sl@0: been called, or has not yet completed. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraV2DirectViewFinder sl@0: */ sl@0: virtual void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)=0; sl@0: sl@0: /** sl@0: Starts transfer of view finder data to the given portion of the screen using sl@0: direct screen access and also clips to the specified portion of the screen. sl@0: sl@0: The view finder has the same size and position as aScreenRect but is only sl@0: visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported sl@0: or KErrNotReady if Reserve() has not been called, or has not yet completed. sl@0: sl@0: @param aWs sl@0: Window server session. sl@0: @param aScreenDevice sl@0: Screen device. sl@0: @param aWindow sl@0: Displayable window. sl@0: @param aScreenRect sl@0: Portion of the screen to which view finder data is to be sl@0: transferred. This is in screen co-ordinates and may be modified if, for example, sl@0: the camera requires the destination to have a certain byte alignment. sl@0: @param aClipRect sl@0: The rectangle to which the screen will be clipped. sl@0: sl@0: @leave KErrNotReady if PowerOn() hasn't been called successfully. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)=0; sl@0: sl@0: /** sl@0: Starts transfer of view finder data. sl@0: sl@0: Bitmaps are returned by MCameraObserver::ViewFinderFrameReady(). sl@0: sl@0: @param aSize sl@0: On return, the size used. sl@0: @leave KErrNotReady if PowerOn() has not been called, or has not yet completed. sl@0: sl@0: @note This method is assumed to be meant for default display only. sl@0: sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void StartViewFinderBitmapsL(TSize& aSize)=0; sl@0: sl@0: /** sl@0: Starts transfer of view finder data and clips the bitmap to the specified clip sl@0: rectangle. sl@0: sl@0: The bitmap is the size of the intersection of aSize and aClipRect, not simply sl@0: aSize padded with white space. sl@0: sl@0: @param aSize sl@0: On return, the size used. sl@0: @param aClipRect sl@0: Required clip rectangle. May be modified if, for example, sl@0: the camera only supports certain byte alignments. sl@0: sl@0: @leave KErrInUse if Reserve() hasn't been called successfully. sl@0: @leave KErrNotReady if PowerOn() hasn't been called successfully. sl@0: sl@0: @note This method is assumed to be meant for default display only. sl@0: sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void StartViewFinderBitmapsL(TSize& aSize,TRect& aClipRect)=0; sl@0: sl@0: /** sl@0: Starts transfer of view finder data. sl@0: sl@0: Picture data is returned by MCameraObserver2::ViewFinderReady(). sl@0: sl@0: @param aImageFormat sl@0: The image format requested by the client. sl@0: @param aSize sl@0: On return, the size used. sl@0: @leave KErrNotSupported sl@0: @leave KErrNotReady if Reserve() has not been sl@0: called, or has not yet completed. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void StartViewFinderL(TFormat aImageFormat,TSize& aSize)=0; sl@0: sl@0: /** sl@0: Starts transfer of view finder data and clips the picture to the specified clip sl@0: rectangle. Picture data is returned by MCameraObserver2::ViewFinderReady(). sl@0: sl@0: The picture is the size of the intersection of aSize and aClipRect, not simply sl@0: aSize padded with white space. sl@0: sl@0: @param aImageFormat sl@0: The image format. sl@0: @param aSize sl@0: On return, the size used. sl@0: @param aClipRect sl@0: Required clip rectangle. May be modified if, for example, sl@0: the camera only supports certain byte alignments. sl@0: sl@0: @leave KErrInUse if Reserve() hasn't been called successfully, sl@0: @leave KErrNotReady if PowerOn() hasn't been called successfully. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)=0; sl@0: sl@0: /** sl@0: Stops transfer of view finder data to the screen. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraV2DirectViewFinder sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void StopViewFinder()=0; sl@0: sl@0: /** sl@0: Queries whether the view finder is active. sl@0: sl@0: @return ETrue if the view finder is active. EFalse if the view finder is not sl@0: active. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraV2DirectViewFinder sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual TBool ViewFinderActive() const=0; sl@0: sl@0: /** sl@0: Sets whether view finder mirroring is on. sl@0: sl@0: Used to switch between what the camera sees and what you would see if the sl@0: device were a mirror. sl@0: sl@0: @param aMirror sl@0: ETrue to set mirroring on, EFalse to set mirroring off. sl@0: sl@0: @leave KErrNotSupported. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraV2DirectViewFinder sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual void SetViewFinderMirrorL(TBool aMirror)=0; sl@0: sl@0: /** sl@0: Gets whether view finder mirroring is active. sl@0: sl@0: @return ETrue if mirroring is set, EFalse if mirroring is not set. sl@0: sl@0: @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to sl@0: refer viewfinders started using CCamera methods. sl@0: sl@0: @see CCamera::CCameraV2DirectViewFinder sl@0: @see CCamera::CCameraClientViewFinder sl@0: */ sl@0: virtual TBool ViewFinderMirror() const=0; sl@0: sl@0: /** sl@0: Performs setup and allocation of memory. sl@0: sl@0: Called prior to calling CaptureImage() to keep the latency of that function sl@0: to a minimum. sl@0: sl@0: Needs to be called only once for multiple CaptureImage() calls. May leave sl@0: with KErrNotSupported or KErrNoMemory or KErrInUse or KErrNotReady. sl@0: sl@0: The specified image format must be one of the formats supported sl@0: (see TCameraInfo::iImageFormatsSupported). sl@0: sl@0: The specified size index must be in the range of 0 to TCameraInfo::iNumImageSizesSupported-1 sl@0: inclusive. sl@0: sl@0: @param aImageFormat sl@0: The image format. sl@0: @param aSizeIndex sl@0: Size index. sl@0: sl@0: @leave KErrNotSupported sl@0: @leave KErrNoMemory sl@0: @leave KErrNotReady if PowerOn() hasn't been called successfully. sl@0: sl@0: @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture sl@0: at the same time may not be possible. In this case, the recommendation is to unprepare video capture before preparing sl@0: image capture if PrepareVideoCaptureL() has already been called. sl@0: sl@0: @see CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(TPrepareImageParameters aPrepareImageParameters) sl@0: */ sl@0: virtual void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex)=0; sl@0: sl@0: /** sl@0: Performs setup and allocation of memory and clips the image to the specified sl@0: rectangle. sl@0: sl@0: No effect unless TCameraInfo::iImageClippingSupported is set to ETrue. The sl@0: image captured is the intersection of aClipRect and the rectangle from (0,0) sl@0: to aSize. Needs to be called only once for multiple CaptureImage() calls. sl@0: May leave with KErrNotSupported or KErrNoMemory. sl@0: sl@0: The specified image format must be one of the formats supported (see TCameraInfo::iImageFormatsSupported). sl@0: sl@0: The specified size index must be in the range of 0 to TCameraInfo::iNumImageSizesSupported-1 sl@0: inclusive. sl@0: sl@0: @param aImageFormat sl@0: The image format. sl@0: @param aSizeIndex sl@0: Size index. sl@0: @param aClipRect sl@0: The rectangle to which the image is to be clipped. sl@0: sl@0: @leave KErrNotSupported sl@0: @leave KErrNoMemory sl@0: @leave KErrInUse if Reserve() hasn't been called successfully sl@0: @leave KErrNotReady if PowerOn() sl@0: hasn't been called successfully. sl@0: sl@0: @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture sl@0: at the same time may not be possible. In this case, the recommendation is to unprepare video capture before preparing sl@0: image capture if PrepareVideoCaptureL() has already been called. sl@0: sl@0: @see CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(TPrepareImageParameters aPrepareImageParameters) sl@0: */ sl@0: virtual void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex,const TRect& aClipRect)=0; sl@0: sl@0: /** sl@0: Asynchronously performs still image capture. sl@0: sl@0: Calls MCameraObserver::ImageReady() when complete. sl@0: sl@0: @see CCamera::CCameraImageCapture sl@0: @see CCamera::CCameraPreImageCaptureControl sl@0: */ sl@0: virtual void CaptureImage()=0; sl@0: sl@0: /** sl@0: Cancels the asynchronous still image capture. sl@0: sl@0: @see CCamera::CCameraImageCapture sl@0: */ sl@0: virtual void CancelCaptureImage()=0; sl@0: sl@0: /** sl@0: Enumerates through the available image capture sizes, based on the specified sl@0: size index and format sl@0: sl@0: The size index must be in the range 0 to TCameraInfo::iNumImageSizesSupported-1 sl@0: inclusive. sl@0: sl@0: @param aSize sl@0: Image size. sl@0: @param aSizeIndex sl@0: Size index. sl@0: @param aFormat sl@0: The image format. sl@0: */ sl@0: virtual void EnumerateCaptureSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const=0; sl@0: sl@0: /** sl@0: Prepares 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: May leave with KErrNotSupported or KErrNoMemory. sl@0: sl@0: @param aFormat sl@0: Format must be one of the video frame formats supported (see sl@0: TCameraInfo::iVideoFrameFormatsSupported). sl@0: @param aSizeIndex sl@0: Size index must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1 sl@0: inclusive. sl@0: @param aRateIndex sl@0: The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1 sl@0: inclusive. sl@0: @param aBuffersToUse sl@0: The number of discrete buffers to use. sl@0: @param aFramesPerBuffer sl@0: How large the buffers are to be. Must be less than sl@0: or equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned sl@0: to MCameraObserver::FrameBufferReady() at a time. sl@0: sl@0: @leave May leave with KErrNotSupported, KErrNoMemory, or KErrNotReady if PowerOn() sl@0: hasn't been called successfully. sl@0: sl@0: @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture sl@0: at the same time may not be possible. In this case, the recommendation is to unprepare image capture before preparing sl@0: video capture if PrepareImageCaptureL() has already been called. sl@0: sl@0: @see CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters) sl@0: */ sl@0: virtual void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer)=0; sl@0: sl@0: /** sl@0: Prepares for video capture and clips the frames to the given rectangle. 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: May leave with KErrNotSupported or KErrNoMemory. sl@0: sl@0: @param aFormat sl@0: Format must be one of the video frame formats supported (see sl@0: TCameraInfo::iVideoFrameFormatsSupported). sl@0: @param aSizeIndex sl@0: Size index must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1 sl@0: inclusive. sl@0: @param aRateIndex sl@0: The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1 sl@0: inclusive. sl@0: @param aBuffersToUse sl@0: The number of discrete buffers to use. sl@0: @param aFramesPerBuffer sl@0: How large the buffers are to be. Must be less than sl@0: or equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned sl@0: to MCameraObserver::FrameBufferReady() at a time. sl@0: @param aClipRect sl@0: The rectangle to which the image is to be clipped. sl@0: @leave KErrNotSupported sl@0: @leave KErrNoMemory, sl@0: @leave KErrInUse if Reserve() hasn't been called successfully sl@0: @leave KErrNotReady if PowerOn() hasn't been called successfully. sl@0: sl@0: @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture sl@0: at the same time may not be possible. In this case, the recommendation is to unprepare image capture before preparing sl@0: video capture if PrepareImageCaptureL() has already been called. sl@0: sl@0: @see CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters) sl@0: */ sl@0: virtual void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer,const TRect& aClipRect)=0; sl@0: sl@0: /** sl@0: Starts capturing video. sl@0: sl@0: Calls MCameraObserver::FrameBufferReady() when each buffer has been filled sl@0: with the required number of frames, as set by PrepareVideoCaptureL(). sl@0: */ sl@0: virtual void StartVideoCapture()=0; sl@0: sl@0: /** sl@0: Stops video capture. sl@0: */ sl@0: virtual void StopVideoCapture()=0; sl@0: sl@0: /** sl@0: Tests whether video capture is active. sl@0: sl@0: @return ETrue if video capture is active. EFalse if video capture is not active sl@0: */ sl@0: virtual TBool VideoCaptureActive() const=0; sl@0: sl@0: /** sl@0: Enumerates through the available video frame sizes, based on the specified sl@0: size index and format. sl@0: sl@0: @param aSize sl@0: On return the available video frame sizes. Sizes should be returned sl@0: in order, largest first, so clients do not have to iterate through every one. sl@0: @param aSizeIndex sl@0: Size index. Must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1 sl@0: inclusive sl@0: @param aFormat sl@0: Image format. sl@0: */ sl@0: virtual void EnumerateVideoFrameSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const=0; sl@0: sl@0: /** sl@0: Enumerates through the available video frame rates, based on the specified sl@0: rate index, video frame format, size index and exposure mode. sl@0: sl@0: @param aRate sl@0: On return, the available video frame rates. Some rates may not sl@0: be available due to, for example, current flash mode setting. In those cases sl@0: a rate of 0 will be returned. Rates should be returned in order, highest first, sl@0: so clients do not have to iterate through every one. sl@0: @param aRateIndex sl@0: The rate index. Must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1 sl@0: inclusive. sl@0: @param aFormat sl@0: The format. sl@0: @param aSizeIndex sl@0: The size index. sl@0: @param aExposure sl@0: The exposure mode. sl@0: */ sl@0: virtual void EnumerateVideoFrameRates(TReal32& aRate,TInt aRateIndex,TFormat aFormat,TInt aSizeIndex,TExposure aExposure = EExposureAuto) const=0; sl@0: sl@0: /** sl@0: Gets the frame size currently in use. sl@0: sl@0: @param aSize sl@0: The frame size currently in use. sl@0: */ sl@0: virtual void GetFrameSize(TSize& aSize) const=0; sl@0: sl@0: /** sl@0: Gets the frame rate currently in use. sl@0: sl@0: @return The frame rate currently in use. sl@0: */ sl@0: virtual TReal32 FrameRate() const=0; sl@0: sl@0: /** sl@0: Gets the number of buffers currently in use. sl@0: sl@0: @return The number of buffers currently in use. sl@0: */ sl@0: virtual TInt BuffersInUse() const=0; sl@0: sl@0: /** sl@0: Gets the number of frames per buffer currently in use. sl@0: sl@0: @return The number of frames per buffer currently in use. sl@0: */ sl@0: virtual TInt FramesPerBuffer() const=0; sl@0: sl@0: /** sl@0: Sets the quality value to use if jpeg is a supported image for video format. sl@0: sl@0: Ignored if jpeg is not a supported image for video format. sl@0: sl@0: @param aQuality sl@0: The quality value to use, clamped to the range 1 to 100. sl@0: sl@0: @see CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::iImageMaxMemorySize sl@0: */ sl@0: virtual void SetJpegQuality(TInt aQuality)=0; sl@0: sl@0: /** sl@0: Gets the currently set jpeg quality value. sl@0: sl@0: Returns 0 if not supported. sl@0: sl@0: @return The currently set jpeg quality value. sl@0: sl@0: @see CCamera::CCameraPreImageCaptureControl::GetImageMaxMemorySizeL(TUint& aMemorySize) sl@0: */ sl@0: virtual TInt JpegQuality() const=0; sl@0: sl@0: /** sl@0: Gets a custom interface. The client has to cast the returned pointer sl@0: to the appropriate type. sl@0: sl@0: @param aInterface sl@0: The Uid of the particular interface function required. sl@0: sl@0: @return Custom interface pointer. NULL if the requested interface is not supported. sl@0: */ sl@0: virtual TAny* CustomInterface(TUid aInterface)=0; sl@0: sl@0: /** sl@0: @internalComponent sl@0: Returns the camera API version no. sl@0: */ sl@0: IMPORT_C TInt CameraVersion(); sl@0: sl@0: private: sl@0: sl@0: /** sl@0: Default Constructor sl@0: sl@0: Prevents implementers from deriving from CCamera. sl@0: Implementation requires derivation from CCameraPlugin instead. sl@0: */ sl@0: IMPORT_C CCamera(); sl@0: }; sl@0: sl@0: /** sl@0: Buffer class for passing video frames between camera and client. sl@0: sl@0: May contain multiple frames. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class MFrameBuffer sl@0: { sl@0: public: sl@0: /** sl@0: Gets a non-bitmap frame in the buffer. sl@0: sl@0: @param aIndex sl@0: The index of the required, non-bitmap, frame. sl@0: sl@0: @leave KErrArgument if aIndex is out of range sl@0: @leave KErrNotSupported if the frame format is bitmap. sl@0: @return A pointer to the specified non-bitmap format frame of video data. sl@0: */ sl@0: virtual TDesC8* DataL(TInt aIndex)=0; sl@0: sl@0: /** sl@0: Gets a bitmap frame in the buffer. sl@0: sl@0: @param aIndex sl@0: The index of the required, bitmap format, frame. sl@0: sl@0: @leave KErrArgument if aIndex is out of range and sl@0: @leave KErrNotSupported if sl@0: the frame format is not a bitmap. sl@0: @return A pointer to the specified bitmap format frame of video data. sl@0: */ sl@0: virtual CFbsBitmap* FrameL(TInt aIndex)=0; sl@0: sl@0: /** sl@0: Releases the buffer for re-use by the camera once the client has processed sl@0: the frame data. sl@0: sl@0: Signals to CCamera that the buffer data has been used and that the buffer sl@0: is free for re-use. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Sequential frame number of the first frame in the buffer, counting from when sl@0: CCamera::StartVideoCapture() was called and including frames dropped due to sl@0: lack of buffers. sl@0: */ sl@0: TInt iIndexOfFirstFrameInBuffer; sl@0: sl@0: /** sl@0: Time elapsed from when CCamera::StartVideoCapture() was called until the first sl@0: frame in the buffer was captured. sl@0: */ sl@0: TTimeIntervalMicroSeconds iElapsedTime; sl@0: }; sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: class MReserveObserver; sl@0: sl@0: sl@0: /** sl@0: An active object class implemented by Symbian and used to subscribe for the updates in the Properties, retrieve the sl@0: Properties and forward the notification to the client. sl@0: sl@0: @note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is sl@0: change in the reserve status. sl@0: */ sl@0: class CCameraStatusWatch : public CActive sl@0: { sl@0: public: sl@0: IMPORT_C ~CCameraStatusWatch(); sl@0: static CCameraStatusWatch* NewL(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId); sl@0: private: sl@0: sl@0: CCameraStatusWatch(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId); sl@0: void ConstructL(); sl@0: void RunL(); sl@0: void DoCancel(); sl@0: sl@0: private: sl@0: RProperty iProperty; sl@0: MReserveObserver& iReserveObserver; sl@0: TInt iCameraIndex; sl@0: TInt iSecureId; sl@0: }; sl@0: sl@0: sl@0: #endif // ECAM_H