First public contribution.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 #include <ecamuids.hrh>
26 #include <e32property.h>
28 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
34 class CWsScreenDevice;
38 typedef TInt TPostCaptureControlId;
40 /** Specifies camera device information.
42 If either zoom or digital zoom are available then the appropriate entries
43 in this class will be set to indicate the range of values that they may take.
44 This should be implemented such that a setting of zero corresponds to no zoom,
45 and a step of one corresponds to the smallest increment available, in a linear
48 There are also zoom factors that correspond to the actual zoom factor when
49 at minimum (non-digital only) and maximum zoom. Negative zoom values represent
52 Image capture, if supported, is simply a case of transferring the current
53 image from the camera to the client via MCameraObserver::ImageReady(). The
54 camera class must set the iImageFormatsSupported bitfield to indicate the
63 /** Possible directions in which the camera may point.
65 enum TCameraOrientation
67 /** Outward pointing camera for taking pictures.
68 Camera is directed away from the user. */
70 /** Inward pointing camera for conferencing.
71 Camera is directed towards the user. */
73 /** Mobile camera capable of multiple orientations.
74 Camera orientation may be changed by the user. */
76 /** Camera orientation is not known. */
80 /** Various flags describing the features available for a particular implementation
84 /** View finder display direct-to-screen flag */
85 EViewFinderDirectSupported = 0x0001,
86 /** View finder bitmap generation flag */
87 EViewFinderBitmapsSupported = 0x0002,
88 /** Still image capture flag */
89 EImageCaptureSupported = 0x0004,
90 /** Video capture flag */
91 EVideoCaptureSupported = 0x0008,
92 /** View finder display mirroring flag */
93 EViewFinderMirrorSupported = 0x0010,
94 /** Contrast setting flag */
95 EContrastSupported = 0x0020,
96 /** Brightness setting flag */
97 EBrightnessSupported = 0x0040,
98 /** View finder clipping flag */
99 EViewFinderClippingSupported = 0x0080,
100 /** Still image capture clipping flag */
101 EImageClippingSupported = 0x0100,
102 /** Video capture clipping flag */
103 EVideoClippingSupported = 0x0200
106 /** Version number and name of camera hardware. */
107 TVersion iHardwareVersion;
108 /** Version number and name of camera software (device driver). */
109 TVersion iSoftwareVersion;
110 /** Orientation of this particular camera device. */
111 TCameraOrientation iOrientation;
113 /** Bitfield of TOptions available */
114 TUint32 iOptionsSupported;
115 /** The supported flash modes.
117 This is a bitfield of CCamera::TFlash values.
119 If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the
120 application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed
121 from the implementation should be filtered by ECAM Implementation.
122 To receive unrecognised/extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
123 to create camera object. This is an indication to ECAM implementation. In this case, application is assumed
124 to be prepared to receive unrecognised enum values.
125 @see CCamera::CCameraAdvancedSettings::SupportedFlashModes()
128 TUint32 iFlashModesSupported;
129 /** The supported exposure modes.
131 This is a bitfield of CCamera::TExposure values. */
132 TUint32 iExposureModesSupported;
134 /** The supported white balance settings.
136 This is a bitfield of of CCamera::TWhiteBalance values.
138 If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the
139 application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed
140 from the implementation should be filtered by ECAM Implementation.
141 To receive unrecognised/extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
142 to create camera object. This is an indication to ECAM implementation. In this case, application is assumed
143 to be prepared to receive unrecognised enum values.
144 Refer to CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes() implementation
146 @see CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes()
148 TUint32 iWhiteBalanceModesSupported;
150 /** Minimum zoom value allowed.
152 Must be negative, or zero if not supported.
154 This is the minimum value that may be passed to CCamera::SetZoomFactorL(). */
156 /** Maximum zoom value allowed.
158 Must be positive, or zero if not supported.
160 This is the maximum value that may be passed to CCamera::SetZoomFactorL(). */
162 /** Maximum digital zoom value allowed.
164 Must be positive, or zero if not supported.
166 This is the maximum value that may be passed to CCamera::SetDigitalZoomFactorL().
167 Digital zoom factor is assumed to be a linear scale from 0 to iMaxDigitalZoom. */
168 TInt iMaxDigitalZoom;
170 /** Image size multiplier corresponding to minimum zoom value.
172 Must be between 0 and 1 inclusive. Both 0 and 1 indicate that macro functionality
174 TReal32 iMinZoomFactor;
175 /** Image size multiplier corresponding to maximum zoom value.
177 May take the value 0, or values greater than or equal to 1. Both 0 and 1 indicate
178 that zoom functionality is not supported. */
179 TReal32 iMaxZoomFactor;
180 /** Image size multiplier corresponding to maximum digital zoom value.
182 Implementation recommendation is to use 'appropriate value' for maximum digital zoom which could cover only values
183 given by new digital zoom methods based on image format and capture mode.
185 Must be greater than or equal to 1. */
186 TReal32 iMaxDigitalZoomFactor;
188 /** Count of still image capture sizes allowed.
190 Number of different image sizes that CCamera::EnumerateCaptureSizes() will
191 support, based on the index passed in. Index must be between 0 and iNumImageSizesSupported-1. */
192 TInt iNumImageSizesSupported;
193 /** The supported still image formats.
195 This is a bitfield of CCamera::TFormat values. */
196 TUint32 iImageFormatsSupported;
198 /** Count of video frame sizes allowed.
200 This is the number of different video frame sizes that CCamera::EnumerateVideoFrameSizes()
201 will support, based on the specified index. The index must be between 0 and
202 iNumVideoFrameSizesSupported-1. */
203 TInt iNumVideoFrameSizesSupported;
204 /** Count of video frame rates allowed.
206 This is the number of different video frame rates that CCamera::EnumerateVideoFrameRates()
207 will support, based on the specified index. The index must be between 0 and
208 iNumVideoFrameRatesSupported-1. */
209 TInt iNumVideoFrameRatesSupported;
210 /** The supported video frame formats.
212 This is a bitfield of video frame CCamera::TFormat values.
214 If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the
215 application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed
216 from the implementation should be filtered by the ECAM implementation.
217 To receive unrecognised/extra added enum values, the application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
218 to create the camera object. This is an indication to the ECAM implementation. In this case, the application is assumed
219 to be prepared to receive unrecognised enum values.
221 TUint32 iVideoFrameFormatsSupported;
222 /** Maximum number of frames per buffer that may be requested. */
223 TInt iMaxFramesPerBufferSupported;
224 /** Maximum number of buffers allowed */
225 TInt iMaxBuffersSupported;
228 /** Mixin base class for camera clients.
230 An application must implement an MCameraObserver or MCameraObserver2 (recommended)
231 in order to use the camera API. This derived class is called when the camera is
232 ready for use, an image has been captured or a buffer of video data is ready, including
235 Implementations of the camera API should use MCameraObserver::FrameBufferReady()
236 and MFrameBuffer::Release() to co-ordinate the mapping of any special memory
242 class MCameraObserver
245 /** Camera reservation is complete.
247 Called asynchronously when CCamera::Reserve() completes.
250 An error on failure and KErrNone on success.
252 virtual void ReserveComplete(TInt aError)=0;
254 /** Indicates camera power on is complete.
256 Called on completion of CCamera:PowerOn().
259 KErrNone on success, KErrInUse if the camera is in
260 use by another client or KErrNoMemory if insufficient system memory is available.
262 virtual void PowerOnComplete(TInt aError)=0;
264 /** Tests whether transfer of view finder data has completed.
266 Called periodically in response to the use of CCamera::StartViewFinderBitmapsL().
269 The view finder frame.
271 virtual void ViewFinderFrameReady(CFbsBitmap& aFrame)=0;
273 /** Transfers the current image from the camera to the client.
275 Called asynchronously when CCamera::CaptureImage() completes.
278 On return, a pointer to an image held in CFbsBitmap form if
279 this was the format specified in CCamera::PrepareImageCaptureL().
281 On return, a pointer to an HBufC8 if this was the format specified
282 in CCamera::PrepareImageCaptureL(). NULL if there was an error.
284 KErrNone on success or an error code on failure.
286 virtual void ImageReady(CFbsBitmap* aBitmap,HBufC8* aData,TInt aError)=0;
288 /** Passes a filled frame buffer to the client.
290 Called asynchronously, when a buffer has been filled with the required number
291 of video frames by CCamera::StartVideoCapture().
294 On return, a pointer to an MFrameBuffer if successful,
295 or NULL if not successful.
297 KErrNone if successful, or an error code if not successful.
299 virtual void FrameBufferReady(MFrameBuffer* aFrameBuffer,TInt aError)=0;
304 Class used for passing camera picture data between camera and client in the V2 observer.
305 Used for viewfinder, image capture and video capture.
307 The class offers APIs for the client to access the data as a descriptor, a bitmap
308 or a handle to a kernel chunk. Depending on the format previously requested by
309 the client, one or more of the API choices may be inappropriate e.g. an image will
310 not be avaiable as a bitmap in the FBS unless the client has specifically requested
313 The buffer may contain multiple frames.
322 Returns the number of frames of image data contained within the buffer. This
323 would be 1 for a image capture, and match the requested count
324 for video capture. For other methods in this class that take a aFrameIndex
325 param, 0 <= aFrameIndex < NumFrames()
327 @return The number of frames of image data in the buffer.
329 virtual TInt NumFrames()=0;
331 Returns a pointer to a descriptor containing a frame of camera data. The format
332 will have been previously specified by a CCamera class method.
335 The index of the required frame. For a still image this should be 0.
337 @leave KErrArgument if aIndex is out of range and
338 @leave KErrNotSupported if the camera data is actually bitmaps in the FBS.
340 @return A pointer to a descriptor containing a frame of image data.
342 virtual TDesC8* DataL(TInt aFrameIndex)=0;
345 Returns a reference to a FBS bitmap containing a frame of image data.
348 The index of the required frame. For a still image this should be 0.
350 @leave KErrArgument if aIndex is out of range and
351 @leave KErrNotSupported if the picture data is not a FBS bitmap.
353 @return A reference to a FBS bitmap containing a frame of picture data.
355 virtual CFbsBitmap& BitmapL(TInt aFrameIndex)=0;
358 Returns a handle for the chunk that contains the camera data.
359 The RChunk is exposed so that it can potentially be shared between multiple
361 The ptr returned by DataL(aFrameIndex) is effectively derived from this
362 RChunk (where both are supported simulataneously). The equivalent ptr would be:
364 ptr.Set(ChunkL().Base() + ChunkOffset(aFrameIndex), FrameSize(aFrameIndex));
366 @leave KErrNotSupported if the chunk is not available.
368 @return A reference to a handle to the chunk that contains the buffer of picture data.
370 virtual RChunk& ChunkL()=0;
373 Returns the offset into the chunk that contains the frame specified by aFrameIndex.
374 The client would add this offset to the ptr returned by ChunkL().Base() to
375 get the address of the start of the frame data.
378 The index of the required frame. For a still image this should be 0.
380 @leave KErrNotSupported if the chunk is not available
381 @leave KErrArgument if aIndex is out of range.
383 @return The offset into the chunk for the start of the frame.
385 virtual TInt ChunkOffsetL(TInt aFrameIndex)=0;
388 Returns the size of the data in bytes that comprises the frame specified by aIndex.
391 The index of the required frame. For a still image this should be 0.
394 if aIndex is out of range.
396 @return Returns the size of the data in bytes that comprises the frame.
398 virtual TInt FrameSize(TInt aFrameIndex)=0;
401 Releases the buffer. Once the client has processed
402 the picture data it should use this method to signal to CCamera that the
403 buffer can be re-used.
405 virtual void Release()=0;
409 Sequential frame number of the first frame in the buffer, counting from when
410 CCamera::StartVideoCapture() was called and including frames dropped due to
411 lack of buffers. Always zero for still images. May also be used by client viewfinders.
413 TInt iIndexOfFirstFrameInBuffer;
416 Time elapsed from when CCamera::StartVideoCapture() was called until the first
417 frame in the buffer was captured. Always zero for still images.
419 TTimeIntervalMicroSeconds iElapsedTime;
423 Uid used to identify the event that the request to Reserve() has completed
425 static const TUid KUidECamEventReserveComplete = {0x101F7D3B};
428 Uid used to identify the event that the request to PowerOn() has completed
430 static const TUid KUidECamEventPowerOnComplete = {0x101F7D3C};
433 Uid used to identify the event that the client has lost
434 control of the camera
436 static const TUid KUidECamEventCameraNoLongerReserved = {0x101F7D3D};
439 Uid used to notify the client who made the new reserve request.
441 Error value KErrECamHighPriorityReserveRequesterExists indicates another such reserve request is outstanding and
442 has higher priority than this one.
443 Error value KErrCancel indicates a new reserve requester with higher priority than the current requester has
444 been made. That's why, this one got cancelled.
445 Any other error may also occur.
446 @see CCamera::CCameraAdvancedSettings::ReserveL(const TTimeIntervalMicroseconds32& aMaxTimeToWait, TBool aKickOut);
448 static const TUid KUidECamEventNewReserveComplete = {KUidECamEventNewReserveCompleteUidValue};
454 General purpose class to describe an ECam event.
456 Contains a UID to define the actual event type, and an integer to define the event code.
468 A UID to define the type of event.
470 The error code associated with the event.
473 IMPORT_C TECAMEvent(TUid aEventType, TInt aErrorCode);
478 Provided so this class can be packaged in a TPckgBuf<>.
480 IMPORT_C TECAMEvent();
483 A UID to define the event type.
488 The error code associated with the event.
494 Uid used to identify a particular version of TECAMEvent base class being used i.e. TECAMEvent2 .
495 Useful for MCameraObserver2::HandleEvent implementation to detect the version of TECAMEvent base class.
497 static const TUid KUidECamEventClass2 = {KUidECamEventClass2UidValue};
500 event indicating setting of color entry in the color swap operation. This is a part of class CCamera::CCameraImageProcessing.
501 This event should be packed in TECAMEvent2 class.
503 @note TECAMEvent2::iParam represents color entry.
505 static const TUid KUidECamEventCIPSetColorSwapEntry = {KUidECamEventCIPSetColorSwapEntryUidValue};
506 static const TUid KUidECamEvent2CIPSetColorSwapEntry = {KUidECamEventCIPSetColorSwapEntryUidValue};
509 event indicating removal of color entry in the color swap operation. This is a part of class CCamera::CCameraImageProcessing.
510 This event should be packed in TECAMEvent2 class.
512 @note TECAMEvent2::iParam represents color entry.
514 static const TUid KUidECamEventCIPRemoveColorSwapEntry = {KUidECamEventCIPRemoveColorSwapEntryUidValue};
515 static const TUid KUidECamEvent2CIPRemoveColorSwapEntry = {KUidECamEventCIPRemoveColorSwapEntryUidValue};
518 event indicating setting of color entry in the color accent operation. This is a part of class CCamera::CCameraImageProcessing.
519 This event should be packed in TECAMEvent2 class.
521 @note TECAMEvent2::iParam represents color entry.
523 static const TUid KUidECamEventCIPSetColorAccentEntry = {KUidECamEventCIPSetColorAccentEntryUidValue};
524 static const TUid KUidECamEvent2CIPSetColorAccentEntry = {KUidECamEventCIPSetColorAccentEntryUidValue};
527 event indicating removal of color entry in the color accent operation. This is a part of class CCamera::CCameraImageProcessing.
528 This event should be packed in TECAMEvent2 class.
530 @note TECAMEvent2::iParam represents color entry.
532 static const TUid KUidECamEventCIPRemoveColorAccentEntry = {KUidECamEventCIPRemoveColorAccentEntryUidValue};
533 static const TUid KUidECamEvent2CIPRemoveColorAccentEntry = {KUidECamEventCIPRemoveColorAccentEntryUidValue};
536 event indicating issue of pre capture warnings. This is a part of class CCamera::CCameraAdvancedSettings.
537 This event should be packed in TECAMEvent2 class.
539 This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
541 void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
542 void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
543 void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
545 @note TECAMEvent2::iParam represents bit field describing all PreCaptureWarnings currently issued.
547 static const TUid KUidECamEventCameraSettingPreCaptureWarning = {KUidECamEventCameraSettingPreCaptureWarningUidValue};
548 static const TUid KUidECamEvent2CameraSettingPreCaptureWarning = {KUidECamEventCameraSettingPreCaptureWarningUidValue};
551 Special type of TECAMEvent class used to retrieve some extra information from particular events received
556 class TECAMEvent2 : public TECAMEvent
560 IMPORT_C static TBool IsEventEncapsulationValid(const TECAMEvent& aECAMEvent);
562 IMPORT_C TECAMEvent2(TUid aEventType, TInt aErrorCode, TInt aParam);
564 IMPORT_C const TUid& EventClassUsed() const;
568 Uid representing this version of TECAMEvent base class. Uid used is KUidECamEventClass2
570 TUid iEventClassUsed;
574 TInt iReserved1; -> Made Public TInt iParam1
585 iParam1 will be used to provide extra information if iParam is not sufficient.
586 This signifies different things for different valid events.
588 Future events may also use this class member variable.
593 This signifies different things for different valid events.
595 Future events may also use this class member variable.
600 /** Mixin base class V2 for camera clients.
602 An application must implement an MCameraObserver2 (or MCameraObserver) in order to use the camera
603 API. This derived class is called when the camera is ready for use, an image
604 has been captured or a buffer of video data is ready, including when errors
611 class MCameraObserver2
615 A camera event has completed.
616 @note Implementations of MCameraObserver2 should ignore events which are not recognised and should not leave.
619 A reference to a TECAMEvent. This can be completion of a call to Reserve()
620 or a call to PowerOn() or a notification that the client has lost control
622 The event contains a uid identifying the event and an accompanying
623 error code (KErrNone for the successful completion of a request).
624 The error will be KErrNotReady for a request that was made out of the
626 The error will be KErrAccessDenied for a Reserve() request that failed
627 because a higher priority client already controls the camera.
629 @note This may internally call TECAMEvent2::IsEventEncapsulationValid(aEvent) and also for any other derived version of TECAMEvent
630 class to know whether correct version of TECAMEvent base class has been used.
632 virtual void HandleEvent(const TECAMEvent& aEvent)=0;
635 Notifies client of new view finder data. Called periodically in response to
636 the use of CCamera::StartViewFinderL().
639 A reference to an MCameraBuffer if successful, or NULL if not successful.
642 KErrNone if successful, or an error code if not successful.
644 virtual void ViewFinderReady(MCameraBuffer& aCameraBuffer,TInt aError)=0;
647 Notifies the client of a new captured camera image. Called asynchronously
648 when CCamera::CaptureImage() completes.
651 A reference to an MCameraBuffer if successful, or NULL if not successful.
654 KErrNone if successful, or an error code if not successful.
656 @note If new image capture classes used, then this callback will not be used. Refer MCaptureImageObserver
658 virtual void ImageBufferReady(MCameraBuffer& aCameraBuffer,TInt aError)=0;
661 Notifies the client of new captured video. Called asynchronously and periodically
662 after CCamera::StartVideoCapture() is called. The buffer has been filled with the
663 required number of video frames specified PrepareVideoCaptureL().
666 A reference to an MCameraBuffer if successful, or NULL if not successful.
669 KErrNone if successful, or an error code if not successful.
671 virtual void VideoBufferReady(MCameraBuffer& aCameraBuffer,TInt aError)=0;
675 /** Base class for camera devices.
677 Provides the interface that an application uses to control, and acquire images
680 An application must supply an implementation of MCameraObserver2 (or MCameraObserver).
685 class CCamera : public CBase
689 friend class CCameraPlugin;
692 class CCameraPresets;
693 class CCameraAdvancedSettings;
694 class CCameraImageProcessing;
695 class CCameraHistogram;
696 class CCameraV2Histogram;
697 class CCameraOverlay;
698 class CCameraSnapshot;
699 class CCameraDirectViewFinder;
700 class CCameraV2DirectViewFinder;
701 class CCameraClientViewFinder;
702 class CCameraPreImageCaptureControl;
703 class CCameraImageCapture;
704 class CCameraPostImageCaptureControl;
705 class CCameraVideoCaptureControl;
706 class CCameraDirectSnapshot;
707 class CCameraContinuousZoom;
710 /** Possible still image and video frame formats
712 Formats are read from left to right, starting at the top of the image. YUV
713 format is as defined by ITU-R BT.601-4. */
716 /** 8 bit greyscale values, 0=black, 255=white. */
717 EFormatMonochrome = 0x0001,
718 /** Packed RGB triplets, 4 bits per pixel with red in the least significant bits
719 and the 4 most significant bits unused. */
720 EFormat16bitRGB444 = 0x0002,
721 /** Packed RGB triplets, 5 bits per pixel for red and blue and 6 bits for green,
722 with red in the least significant bits. */
723 EFormat16BitRGB565 = 0x0004,
724 /** Packed RGB triplets, 8 bits per pixel with red in the least significant bits
725 and the 8 most significant bits unused. */
726 EFormat32BitRGB888 = 0x0008,
728 EFormatJpeg = 0x0010,
730 EFormatExif = 0x0020,
731 /** CFbsBitmap object with display mode EColor4K. */
732 EFormatFbsBitmapColor4K = 0x0040,
733 /** CFbsBitmap object with display mode EColor64K. */
734 EFormatFbsBitmapColor64K = 0x0080,
735 /** CFbsBitmap object with display mode EColor16M. */
736 EFormatFbsBitmapColor16M = 0x0100,
737 /** Implementation dependent. */
738 EFormatUserDefined = 0x0200,
739 /** 4:2:0 format, 8 bits per sample, Y00Y01Y10Y11UV. */
740 EFormatYUV420Interleaved = 0x0400,
741 /** 4:2:0 format, 8 bits per sample, Y00Y01Y02Y03...U0...V0... */
742 EFormatYUV420Planar = 0x0800,
743 /** 4:2:2 format, 8 bits per sample, UY0VY1. Maps to Graphics' EUidPixelFormatYUV_422Interleaved in pixelformats.h. */
744 EFormatYUV422 = 0x1000,
745 /** 4:2:2 format, 8 bits per sample, Y1VY0U. Maps to Graphics' EUidPixelFormatYUV_422InterleavedReversed in pixelformats.h. */
746 EFormatYUV422Reversed = 0x2000,
747 /** 4:4:4 format, 8 bits per sample, Y00U00V00 Y01U01V01... */
748 EFormatYUV444 = 0x4000,
749 /** 4:2:0 format, 8 bits per sample, Y00Y01Y02Y03...U0V0... */
750 EFormatYUV420SemiPlanar = 0x8000,
751 /** CFbsBitmap object with display mode EColor16MU. */
752 EFormatFbsBitmapColor16MU = 0x00010000,
753 /** Motion JPEG for video
754 @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L().
757 EFormatMJPEG = 0x00020000,
760 Compressed H264 video format.
761 @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L().
764 EFormatEncodedH264 = 0x00040000,
767 4:2:2 format, 8 bits per sample, Y0UY1V. Maps to Graphics' EUidPixelFormatYUV_422Reversed in pixelformats.h.
768 @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L().
771 EFormatYUV222ReversedV2 = 0x00080000
774 /** Specifies whether contrast is set automatically. */
777 /** Sets the contrast automatically. */
778 EContrastAuto = KMinTInt
780 /** Specifies whether brightness is set automatically. */
783 /** Sets the brightness automatically. */
784 EBrightnessAuto = KMinTInt
786 /** Specifies the type of flash. */
789 /** No flash, always supported. */
791 /** Flash will automatically fire when required. */
793 /** Flash will always fire. */
794 EFlashForced = 0x0002,
795 /** Reduced flash for general lighting */
796 EFlashFillIn = 0x0004,
797 /** Red-eye reduction mode. */
798 EFlashRedEyeReduce = 0x0008,
799 /** Flash at the moment when shutter opens. */
800 EFlashSlowFrontSync = 0x0010,
801 /** Flash at the moment when shutter closes. */
802 EFlashSlowRearSync = 0x0020,
803 /** User configurable setting */
804 EFlashManual = 0x0040,
805 /** Constant emission of light during video mode
806 @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L()
808 EFlashVideoLight = 0x0080
810 /** Specifies the type of exposure. - EExposureAuto is the default value. */
813 /** Set exposure automatically. Default, always supported.
814 This may imply auto aperture so clients may receive a KUidEcamEvent2CameraSettingAutoAperture event notification some time later. */
815 EExposureAuto = 0x0000,
816 /** Night-time setting for long exposures. */
817 EExposureNight = 0x0001,
818 /** Backlight setting for bright backgrounds. */
819 EExposureBacklight = 0x0002,
820 /** Centered mode for ignoring surroundings. */
821 EExposureCenter = 0x0004,
822 /** Sport setting for very short exposures. */
823 EExposureSport = 0x0008,
824 /** Generalised setting for very long exposures. */
825 EExposureVeryLong = 0x0010,
826 /** Snow setting for daylight exposure. */
827 EExposureSnow = 0x0020,
828 /** Beach setting for daylight exposure with reflective glare. */
829 EExposureBeach = 0x0040,
830 /** Programmed exposure setting. */
831 EExposureProgram = 0x0080,
832 /** Aperture setting is given priority. */
833 EExposureAperturePriority = 0x0100,
834 /** Shutter speed setting is given priority.
835 This may imply auto aperture so clients may receive a KUidEcamEvent2CameraSettingAutoAperture event notification some time later. */
836 EExposureShutterPriority = 0x0200,
837 /** User selectable exposure value setting. */
838 EExposureManual = 0x0400,
839 /** Exposure night setting with colour removed to get rid of colour noise. */
840 EExposureSuperNight = 0x0800,
841 /** Exposure for infra-red sensor on the camera */
842 EExposureInfra = 0x1000
845 /** Specifies how the white balance is set. */
848 /** Set white balance automatically. Default, always supported. */
850 /** Normal daylight. */
851 EWBDaylight = 0x0001,
852 /** Overcast daylight. */
854 /** Tungsten filament lighting. */
855 EWBTungsten = 0x0004,
856 /** Fluorescent tube lighting */
857 EWBFluorescent = 0x0008,
858 /** Flash lighting. */
860 /** High contrast daylight primarily snowy */
862 /** High contrast daylight primarily near the sea */
864 /** User configurable mode */
870 If New2L()/NewDuplicate2L() are not used to create camera object, this
871 enum value would be considered as unrecognized and filtered out in 'supported'
874 EWBAutoSkin = 0x0200,
877 If New2L()/NewDuplicate2L() are not used to create camera object, this
878 enum value would be considered as unrecognized and filtered out in 'supported'
882 /** Daylight Under Water
884 If New2L()/NewDuplicate2L() are not used to create camera object, this
885 enum value would be considered as unrecognized and filtered out in 'supported'
888 EWBDaylightUnderWater = 0x0800
893 Determines the number of cameras on the device.
895 @return Count of cameras present on the device.
897 IMPORT_C static TInt CamerasAvailable();
900 @deprecated Use static CCamera* New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
902 Creates an object representing a camera.
905 Reference to class derived from MCameraObserver2 designed to receive
906 notification of asynchronous event completion.
908 Index from 0 to CamerasAvailable()-1 inclusive specifying the
909 camera device to use.
911 Value from -100 to 100 indicating relative priority of client to
914 @return Pointer to a fully constructed CCamera object. Ownership is passed
917 @leave KErrNoMemory if out of memory.
918 @leave KErrNotSupported if aCameraIndex is out of range.
919 @leave KErrPermissionDenied if the application does not have
920 the UserEnvironment capability.
922 @capability UserEnvironment
923 An application that creates a CCamera object must have
924 the UserEnvironment capability.
926 @capability MultimediaDD
927 A process requesting or using this method that has MultimediaDD capability will
928 always have precedence over a process that does not have MultimediaDD.
930 @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined).
931 To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare
932 themselves to receive unrecognised values.
934 IMPORT_C static CCamera* NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
937 Creates an object representing a camera.
938 Clients prepare themselves to receive unrecognised enum, uids etc.
941 Reference to class derived from MCameraObserver2 designed to receive
942 notification of asynchronous event completion.
944 Index from 0 to CamerasAvailable()-1 inclusive specifying the
945 camera device to use.
947 Value from -100 to 100 indicating relative priority of client to
950 @return Pointer to a fully constructed CCamera object. Ownership is passed
953 @leave KErrNoMemory if out of memory.
954 @leave KErrNotSupported if aCameraIndex is out of range.
955 @leave KErrPermissionDenied if the application does not have
956 the UserEnvironment capability.
958 @capability UserEnvironment
959 An application that creates a CCamera object must have
960 the UserEnvironment capability.
962 @capability MultimediaDD
963 A process requesting or using this method that has MultimediaDD capability will
964 always have precedence over a process that does not have MultimediaDD.
966 @note Clients using this creation method should prepare themselves to receive any unrecognised enum values, uids
967 from 'supported' or 'getter' methods
969 IMPORT_C static CCamera* New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
972 Creates an object representing a camera.
975 Reference to class derived from MCameraObserver designed to receive
976 notification of asynchronous event completion.
978 Index from 0 to CamerasAvailable()-1 inclusive specifying the
979 camera device to use.
981 @leave KErrNoMemory if out of memory.
982 @leave KErrNotSupported if aCameraIndex is out of range.
983 @leave KErrPermissionDenied if the application does not have
984 the UserEnvironment capability.
986 @return Pointer to a fully constructed CCamera object. Ownership is passed
989 @capability UserEnvironment
990 An application that creates a CCamera object must have
991 the UserEnvironment capability.
993 @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined).
994 To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare
995 themselves to receive unrecognised values.
997 IMPORT_C static CCamera* NewL(MCameraObserver& aObserver,TInt aCameraIndex);
1000 @deprecated Use static CCamera* NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle);
1002 Duplicates the original camera object for use by, for example, multimedia systems.
1004 May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
1007 Reference to an observer.
1008 @param aCameraHandle Handle of an existing camera object.
1010 @leave KErrNoMemory if out of memory.
1011 @leave KErrNotFound if aCameraHandle is not valid.
1012 @leave KErrPermissionDenied if the application does not have
1013 the UserEnvironment capability.
1015 @return Duplicate of the original camera object.
1017 @capability UserEnvironment
1018 An application that creates a CCamera object must have
1019 the UserEnvironment capability.
1021 @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined).
1022 To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare
1023 themselves to receive unrecognised values.
1025 IMPORT_C static CCamera* NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle);
1028 Duplicates the original camera object for use by, for example, multimedia systems.
1029 Clients prepare themselves to receive unrecognised enum, uids etc.
1031 May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
1034 Reference to an observer.
1035 @param aCameraHandle Handle of an existing camera object.
1037 @leave KErrNoMemory if out of memory.
1038 @leave KErrNotFound if aCameraHandle is not valid.
1039 @leave KErrPermissionDenied if the application does not have
1040 the UserEnvironment capability.
1042 @return Duplicate of the original camera object.
1044 @capability UserEnvironment
1045 An application that creates a CCamera object must have
1046 the UserEnvironment capability.
1048 @note Clients using this creation method should prepare themselves to receive any unrecognised enum values, uids
1049 from 'supported' or 'getter' methods
1051 IMPORT_C static CCamera* NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle);
1054 Duplicates the original camera object for use by, for example, multimedia systems.
1056 @leave KErrNoMemory if out of memory.
1057 @leave KErrNotFound if aCameraHandle is not valid.
1058 @leave KErrPermissionDenied if the application does not have
1059 the UserEnvironment capability.
1062 Reference to an observer.
1063 @param aCameraHandle Handle of an existing camera object.
1065 @return Duplicate of the original camera object.
1067 @capability UserEnvironment
1068 An application that creates a CCamera object must have
1069 the UserEnvironment capability.
1071 @note Applications using this method to create camera object may not receive enums/uids added in future(after being baselined).
1072 To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare
1073 themselves to receive unrecognised values.
1075 IMPORT_C static CCamera* NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle);
1078 Gets information about the camera device.
1081 On return, information about the camera device. See TCameraInfo.
1083 virtual void CameraInfo(TCameraInfo& aInfo) const=0;
1086 Asynchronous function that performs any required initialisation and reserves
1087 the camera for exclusive use.
1089 Calls MCameraObserver:: ReserveComplete() when complete.
1091 virtual void Reserve()=0;
1094 De-initialises the camera, allowing it to be used by other clients.
1096 virtual void Release()=0;
1099 Asynchronous method to switch on camera power.
1101 User must have successfully called Reserve() prior to calling this function.
1103 Calls MCameraObserver::PowerOnComplete() when power on is complete.
1105 virtual void PowerOn()=0;
1108 Synchronous function for switching off camera power.
1110 virtual void PowerOff()=0;
1113 Gets the device-unique handle of this camera object.
1115 @return The device-unique handle of this camera object.
1117 virtual TInt Handle()=0;
1120 Sets the zoom factor.
1122 This must be in the range of TCameraInfo::iMinZoom to TCameraInfo::iMaxZoom
1123 inclusive. May leave with KErrNotSupported if the specified zoom factor is
1127 Required zoom factor.
1129 virtual void SetZoomFactorL(TInt aZoomFactor = 0)=0;
1132 Gets the currently set zoom factor.
1134 @return The currently set zoom factor.
1136 virtual TInt ZoomFactor() const=0;
1139 Sets the digital zoom factor.
1141 This must be in the range of 0 to TCameraInfo::iMaxDigitalZoom inclusive.
1143 May leave with KErrNotSupported if the zoom factor is out of range.
1145 @param aDigitalZoomFactor
1146 The required digital zoom factor.
1148 virtual void SetDigitalZoomFactorL(TInt aDigitalZoomFactor = 0)=0;
1151 Gets the currently set digital zoom factor.
1153 @return The currently set digital zoom factor.
1155 virtual TInt DigitalZoomFactor() const=0;
1158 Sets the contrast adjustment of the device.
1160 This must be in the range of -100 to +100 or EContrastAuto. May leave with
1161 KErrNotSupported if the specified contrast value is out of range.
1164 Required contrast value. See TCameraInfo::iContrastSupported
1166 virtual void SetContrastL(TInt aContrast)=0;
1169 Gets the currently set contrast value.
1171 @return The currently set contrast value.
1173 virtual TInt Contrast() const=0;
1176 Sets the brightness adjustment of the device.
1178 No effect if this is not supported, see TCameraInfo::iBrightnessSupported.
1180 This must be in the range of -100 to +100 or EBrightnessAuto. May leave
1181 with KErrNotSupported if the brightness adjustment is out of range.
1184 The required brightness adjustment.
1186 virtual void SetBrightnessL(TInt aBrightness)=0;
1189 Gets the currently set brightness adjustment value.
1191 @return The currently set brightness adjustment value.
1193 virtual TInt Brightness() const=0;
1196 Sets the flash mode.
1198 No effect if this is not supported, see TCameraInfo::iFlashModesSupported.
1200 May leave with KErrNotSupported if the specified flash mode is invalid.
1203 The required flash mode.
1205 virtual void SetFlashL(TFlash aFlash = EFlashNone)=0;
1208 Gets the currently set flash mode.
1210 @return The currently set flash mode.
1211 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
1212 application is not prepared to receive extra added enum values (unrecognised). So, any extra enum value(unrecognised)
1213 (set in the ECAM implementation because of sharing clients) should not be returned from the ECAM implementation.
1214 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
1215 to create camera object. ECAM implementation, after verifying this,(by checking version no.) may send new values, if set.
1216 In this case, application is assumed to be prepared to receive unrecognised enum values.
1218 @see CCamera::CCameraAdvancedSettings::FlashMode()
1220 virtual TFlash Flash() const=0;
1223 Sets the exposure adjustment of the device.
1225 No effect if this is not supported, see CameraInfo::iExposureModesSupported.
1227 May leave with KErrNotSupported if the specified exposure adjustment is invalid.
1230 The required exposure adjustment.
1232 virtual void SetExposureL(TExposure aExposure = EExposureAuto)=0;
1235 Gets the currently set exposure setting value.
1237 @return The currently set exposure setting value.
1239 virtual TExposure Exposure() const=0;
1242 Sets the white balance adjustment of the device.
1244 No effect if this is not supported, see TCameraInfo::iWhiteBalanceModesSupported.
1246 @param aWhiteBalance
1247 The required white balance adjustment.
1249 @leave KErrNotSupported if the specified white balance adjustment
1252 virtual void SetWhiteBalanceL(TWhiteBalance aWhiteBalance = EWBAuto)=0;
1255 Gets the currently set white balance adjustment value.
1257 @return The currently set white balance adjustment value.
1259 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
1260 application is not prepared to receive extra added enum values (unrecognised). So, any extra enum value(unrecognised)
1261 (set in the ECAM implementation because of sharing clients) should not be returned from the ECAM implementation.
1262 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
1263 to create camera object. ECAM implementation, after verifying this,(by checking version no.) may send new values, if set.
1264 In this case, application is assumed to be prepared to receive unrecognised enum values.
1265 Refer CCamera::CCameraAdvancedSettings::WhiteBalanceMode() implementation
1267 @see CCamera::CCameraAdvancedSettings::WhiteBalanceMode()
1269 virtual TWhiteBalance WhiteBalance() const=0;
1272 Starts transfer of view finder data to the given portion of the screen using
1273 direct screen access.
1275 The aScreenRect parameter is in screen co-ordinates and may be modified if,
1276 eg, the camera requires the destination to have a certain byte alignment, etc.
1279 Window server session.
1280 @param aScreenDevice
1285 Portion of the screen to which view finder data is to be
1286 transferred. This is in screen co-ordinates and may be modified if, for example,
1287 the camera requires the destination to have a certain byte alignment.
1289 @leave KErrNotReady if PowerOn() has either not
1290 been called, or has not yet completed.
1292 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1293 refer viewfinders started using CCamera methods.
1295 @see CCamera::CCameraV2DirectViewFinder
1297 virtual void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)=0;
1300 Starts transfer of view finder data to the given portion of the screen using
1301 direct screen access and also clips to the specified portion of the screen.
1303 The view finder has the same size and position as aScreenRect but is only
1304 visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported
1305 or KErrNotReady if Reserve() has not been called, or has not yet completed.
1308 Window server session.
1309 @param aScreenDevice
1314 Portion of the screen to which view finder data is to be
1315 transferred. This is in screen co-ordinates and may be modified if, for example,
1316 the camera requires the destination to have a certain byte alignment.
1318 The rectangle to which the screen will be clipped.
1320 @leave KErrNotReady if PowerOn() hasn't been called successfully.
1322 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1323 refer viewfinders started using CCamera methods.
1325 @see CCamera::CCameraClientViewFinder
1327 virtual void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)=0;
1330 Starts transfer of view finder data.
1332 Bitmaps are returned by MCameraObserver::ViewFinderFrameReady().
1335 On return, the size used.
1336 @leave KErrNotReady if PowerOn() has not been called, or has not yet completed.
1338 @note This method is assumed to be meant for default display only.
1340 @see CCamera::CCameraClientViewFinder
1342 virtual void StartViewFinderBitmapsL(TSize& aSize)=0;
1345 Starts transfer of view finder data and clips the bitmap to the specified clip
1348 The bitmap is the size of the intersection of aSize and aClipRect, not simply
1349 aSize padded with white space.
1352 On return, the size used.
1354 Required clip rectangle. May be modified if, for example,
1355 the camera only supports certain byte alignments.
1357 @leave KErrInUse if Reserve() hasn't been called successfully.
1358 @leave KErrNotReady if PowerOn() hasn't been called successfully.
1360 @note This method is assumed to be meant for default display only.
1362 @see CCamera::CCameraClientViewFinder
1364 virtual void StartViewFinderBitmapsL(TSize& aSize,TRect& aClipRect)=0;
1367 Starts transfer of view finder data.
1369 Picture data is returned by MCameraObserver2::ViewFinderReady().
1372 The image format requested by the client.
1374 On return, the size used.
1375 @leave KErrNotSupported
1376 @leave KErrNotReady if Reserve() has not been
1377 called, or has not yet completed.
1379 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1380 refer viewfinders started using CCamera methods.
1382 @see CCamera::CCameraClientViewFinder
1384 virtual void StartViewFinderL(TFormat aImageFormat,TSize& aSize)=0;
1387 Starts transfer of view finder data and clips the picture to the specified clip
1388 rectangle. Picture data is returned by MCameraObserver2::ViewFinderReady().
1390 The picture is the size of the intersection of aSize and aClipRect, not simply
1391 aSize padded with white space.
1396 On return, the size used.
1398 Required clip rectangle. May be modified if, for example,
1399 the camera only supports certain byte alignments.
1401 @leave KErrInUse if Reserve() hasn't been called successfully,
1402 @leave KErrNotReady if PowerOn() hasn't been called successfully.
1404 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1405 refer viewfinders started using CCamera methods.
1407 @see CCamera::CCameraClientViewFinder
1409 virtual void StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)=0;
1412 Stops transfer of view finder data to the screen.
1414 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1415 refer viewfinders started using CCamera methods.
1417 @see CCamera::CCameraV2DirectViewFinder
1418 @see CCamera::CCameraClientViewFinder
1420 virtual void StopViewFinder()=0;
1423 Queries whether the view finder is active.
1425 @return ETrue if the view finder is active. EFalse if the view finder is not
1428 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1429 refer viewfinders started using CCamera methods.
1431 @see CCamera::CCameraV2DirectViewFinder
1432 @see CCamera::CCameraClientViewFinder
1434 virtual TBool ViewFinderActive() const=0;
1437 Sets whether view finder mirroring is on.
1439 Used to switch between what the camera sees and what you would see if the
1440 device were a mirror.
1443 ETrue to set mirroring on, EFalse to set mirroring off.
1445 @leave KErrNotSupported.
1447 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1448 refer viewfinders started using CCamera methods.
1450 @see CCamera::CCameraV2DirectViewFinder
1451 @see CCamera::CCameraClientViewFinder
1453 virtual void SetViewFinderMirrorL(TBool aMirror)=0;
1456 Gets whether view finder mirroring is active.
1458 @return ETrue if mirroring is set, EFalse if mirroring is not set.
1460 @note This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to
1461 refer viewfinders started using CCamera methods.
1463 @see CCamera::CCameraV2DirectViewFinder
1464 @see CCamera::CCameraClientViewFinder
1466 virtual TBool ViewFinderMirror() const=0;
1469 Performs setup and allocation of memory.
1471 Called prior to calling CaptureImage() to keep the latency of that function
1474 Needs to be called only once for multiple CaptureImage() calls. May leave
1475 with KErrNotSupported or KErrNoMemory or KErrInUse or KErrNotReady.
1477 The specified image format must be one of the formats supported
1478 (see TCameraInfo::iImageFormatsSupported).
1480 The specified size index must be in the range of 0 to TCameraInfo::iNumImageSizesSupported-1
1488 @leave KErrNotSupported
1490 @leave KErrNotReady if PowerOn() hasn't been called successfully.
1492 @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
1493 at the same time may not be possible. In this case, the recommendation is to unprepare video capture before preparing
1494 image capture if PrepareVideoCaptureL() has already been called.
1496 @see CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(TPrepareImageParameters aPrepareImageParameters)
1498 virtual void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex)=0;
1501 Performs setup and allocation of memory and clips the image to the specified
1504 No effect unless TCameraInfo::iImageClippingSupported is set to ETrue. The
1505 image captured is the intersection of aClipRect and the rectangle from (0,0)
1506 to aSize. Needs to be called only once for multiple CaptureImage() calls.
1507 May leave with KErrNotSupported or KErrNoMemory.
1509 The specified image format must be one of the formats supported (see TCameraInfo::iImageFormatsSupported).
1511 The specified size index must be in the range of 0 to TCameraInfo::iNumImageSizesSupported-1
1519 The rectangle to which the image is to be clipped.
1521 @leave KErrNotSupported
1523 @leave KErrInUse if Reserve() hasn't been called successfully
1524 @leave KErrNotReady if PowerOn()
1525 hasn't been called successfully.
1527 @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
1528 at the same time may not be possible. In this case, the recommendation is to unprepare video capture before preparing
1529 image capture if PrepareVideoCaptureL() has already been called.
1531 @see CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(TPrepareImageParameters aPrepareImageParameters)
1533 virtual void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex,const TRect& aClipRect)=0;
1536 Asynchronously performs still image capture.
1538 Calls MCameraObserver::ImageReady() when complete.
1540 @see CCamera::CCameraImageCapture
1541 @see CCamera::CCameraPreImageCaptureControl
1543 virtual void CaptureImage()=0;
1546 Cancels the asynchronous still image capture.
1548 @see CCamera::CCameraImageCapture
1550 virtual void CancelCaptureImage()=0;
1553 Enumerates through the available image capture sizes, based on the specified
1554 size index and format
1556 The size index must be in the range 0 to TCameraInfo::iNumImageSizesSupported-1
1566 virtual void EnumerateCaptureSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const=0;
1569 Prepares for video capture.
1571 Performs setup and allocation of memory prior to calling StartVideoCapture()
1572 to keep the latency of that function to a minimum.
1574 May leave with KErrNotSupported or KErrNoMemory.
1577 Format must be one of the video frame formats supported (see
1578 TCameraInfo::iVideoFrameFormatsSupported).
1580 Size index must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
1583 The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
1585 @param aBuffersToUse
1586 The number of discrete buffers to use.
1587 @param aFramesPerBuffer
1588 How large the buffers are to be. Must be less than
1589 or equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned
1590 to MCameraObserver::FrameBufferReady() at a time.
1592 @leave May leave with KErrNotSupported, KErrNoMemory, or KErrNotReady if PowerOn()
1593 hasn't been called successfully.
1595 @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
1596 at the same time may not be possible. In this case, the recommendation is to unprepare image capture before preparing
1597 video capture if PrepareImageCaptureL() has already been called.
1599 @see CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
1601 virtual void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer)=0;
1604 Prepares for video capture and clips the frames to the given rectangle.
1606 Performs setup and allocation of memory prior to calling StartVideoCapture()
1607 to keep the latency of that function to a minimum.
1609 May leave with KErrNotSupported or KErrNoMemory.
1612 Format must be one of the video frame formats supported (see
1613 TCameraInfo::iVideoFrameFormatsSupported).
1615 Size index must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
1618 The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
1620 @param aBuffersToUse
1621 The number of discrete buffers to use.
1622 @param aFramesPerBuffer
1623 How large the buffers are to be. Must be less than
1624 or equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned
1625 to MCameraObserver::FrameBufferReady() at a time.
1627 The rectangle to which the image is to be clipped.
1628 @leave KErrNotSupported
1629 @leave KErrNoMemory,
1630 @leave KErrInUse if Reserve() hasn't been called successfully
1631 @leave KErrNotReady if PowerOn() hasn't been called successfully.
1633 @note Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
1634 at the same time may not be possible. In this case, the recommendation is to unprepare image capture before preparing
1635 video capture if PrepareImageCaptureL() has already been called.
1637 @see CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
1639 virtual void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer,const TRect& aClipRect)=0;
1642 Starts capturing video.
1644 Calls MCameraObserver::FrameBufferReady() when each buffer has been filled
1645 with the required number of frames, as set by PrepareVideoCaptureL().
1647 virtual void StartVideoCapture()=0;
1650 Stops video capture.
1652 virtual void StopVideoCapture()=0;
1655 Tests whether video capture is active.
1657 @return ETrue if video capture is active. EFalse if video capture is not active
1659 virtual TBool VideoCaptureActive() const=0;
1662 Enumerates through the available video frame sizes, based on the specified
1663 size index and format.
1666 On return the available video frame sizes. Sizes should be returned
1667 in order, largest first, so clients do not have to iterate through every one.
1669 Size index. Must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
1674 virtual void EnumerateVideoFrameSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const=0;
1677 Enumerates through the available video frame rates, based on the specified
1678 rate index, video frame format, size index and exposure mode.
1681 On return, the available video frame rates. Some rates may not
1682 be available due to, for example, current flash mode setting. In those cases
1683 a rate of 0 will be returned. Rates should be returned in order, highest first,
1684 so clients do not have to iterate through every one.
1686 The rate index. Must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
1695 virtual void EnumerateVideoFrameRates(TReal32& aRate,TInt aRateIndex,TFormat aFormat,TInt aSizeIndex,TExposure aExposure = EExposureAuto) const=0;
1698 Gets the frame size currently in use.
1701 The frame size currently in use.
1703 virtual void GetFrameSize(TSize& aSize) const=0;
1706 Gets the frame rate currently in use.
1708 @return The frame rate currently in use.
1710 virtual TReal32 FrameRate() const=0;
1713 Gets the number of buffers currently in use.
1715 @return The number of buffers currently in use.
1717 virtual TInt BuffersInUse() const=0;
1720 Gets the number of frames per buffer currently in use.
1722 @return The number of frames per buffer currently in use.
1724 virtual TInt FramesPerBuffer() const=0;
1727 Sets the quality value to use if jpeg is a supported image for video format.
1729 Ignored if jpeg is not a supported image for video format.
1732 The quality value to use, clamped to the range 1 to 100.
1734 @see CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::iImageMaxMemorySize
1736 virtual void SetJpegQuality(TInt aQuality)=0;
1739 Gets the currently set jpeg quality value.
1741 Returns 0 if not supported.
1743 @return The currently set jpeg quality value.
1745 @see CCamera::CCameraPreImageCaptureControl::GetImageMaxMemorySizeL(TUint& aMemorySize)
1747 virtual TInt JpegQuality() const=0;
1750 Gets a custom interface. The client has to cast the returned pointer
1751 to the appropriate type.
1754 The Uid of the particular interface function required.
1756 @return Custom interface pointer. NULL if the requested interface is not supported.
1758 virtual TAny* CustomInterface(TUid aInterface)=0;
1762 Returns the camera API version no.
1764 IMPORT_C TInt CameraVersion();
1771 Prevents implementers from deriving from CCamera.
1772 Implementation requires derivation from CCameraPlugin instead.
1778 Buffer class for passing video frames between camera and client.
1780 May contain multiple frames.
1789 Gets a non-bitmap frame in the buffer.
1792 The index of the required, non-bitmap, frame.
1794 @leave KErrArgument if aIndex is out of range
1795 @leave KErrNotSupported if the frame format is bitmap.
1796 @return A pointer to the specified non-bitmap format frame of video data.
1798 virtual TDesC8* DataL(TInt aIndex)=0;
1801 Gets a bitmap frame in the buffer.
1804 The index of the required, bitmap format, frame.
1806 @leave KErrArgument if aIndex is out of range and
1807 @leave KErrNotSupported if
1808 the frame format is not a bitmap.
1809 @return A pointer to the specified bitmap format frame of video data.
1811 virtual CFbsBitmap* FrameL(TInt aIndex)=0;
1814 Releases the buffer for re-use by the camera once the client has processed
1817 Signals to CCamera that the buffer data has been used and that the buffer
1820 virtual void Release()=0;
1825 Sequential frame number of the first frame in the buffer, counting from when
1826 CCamera::StartVideoCapture() was called and including frames dropped due to
1829 TInt iIndexOfFirstFrameInBuffer;
1832 Time elapsed from when CCamera::StartVideoCapture() was called until the first
1833 frame in the buffer was captured.
1835 TTimeIntervalMicroSeconds iElapsedTime;
1838 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
1839 #include <ecamconst.h>
1842 class MReserveObserver;
1846 An active object class implemented by Symbian and used to subscribe for the updates in the Properties, retrieve the
1847 Properties and forward the notification to the client.
1849 @note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is
1850 change in the reserve status.
1852 class CCameraStatusWatch : public CActive
1855 IMPORT_C ~CCameraStatusWatch();
1856 static CCameraStatusWatch* NewL(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId);
1859 CCameraStatusWatch(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId);
1865 RProperty iProperty;
1866 MReserveObserver& iReserveObserver;