1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/CameraSnapshot.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,235 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @publishedPartner
1.22 + @prototype
1.23 +*/
1.24 +
1.25 +#ifndef CAMERASNAPSHOT_H
1.26 +#define CAMERASNAPSHOT_H
1.27 +
1.28 +#include <ecam.h>
1.29 +#include <gdi.h>
1.30 +#include <ecamcapturecontrol.h>
1.31 +#include <ecam/ecamcommonuids.hrh>
1.32 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.33 +#include <ecam/ecamcommonuidsconst.hrh>
1.34 +#endif
1.35 +class MCameraSnapshot;
1.36 +class MCameraSnapshot2;
1.37 +
1.38 +class MImplementationFactory;
1.39 +
1.40 +/**
1.41 +Constant used to specify the default display time. When this default display time is specified by the client, the implementation
1.42 +may use its own time interval in order to display the direct snapshot data.
1.43 +
1.44 +@see CCamera::CCameraSnapshot::TSnapshotParameters::iDisplayTime
1.45 +
1.46 +@publishedPartner
1.47 +@prototype
1.48 +*/
1.49 +static const TInt KECamSnapshotDefaultDisplayTime = 0;
1.50 +
1.51 +/**
1.52 +The current Version of the TSnapshotParameters class.
1.53 +
1.54 +@publishedPartner
1.55 +@prototype
1.56 +*/
1.57 +static const TUint KECamSnapshotParametersCurrentVersion = 1;
1.58 +
1.59 +/**
1.60 +UID used to identify the event that, the request for snapshot has completed successfully.
1.61 +A callback to MCameraObserver2::HandleEvent() will occur when the snapshot data is ready to be retrieved.
1.62 +If a call to StartSnapshot() is made without a successful call to PrepareSnapshotL() then the callback returns KErrNotReady.
1.63 +*/
1.64 +static const TUid KUidECamEventCameraSnapshot = {KUidECamEventSnapshotUidValue};
1.65 +
1.66 +/**
1.67 +UID used to identify the CCamera::CCameraSnapshot API.
1.68 +This is the UID which is used to obtain the CCameraSnapshot interface,
1.69 +via a call to CCamera::CustomInterface().
1.70 +
1.71 +@see KECamSnapshotUidValue
1.72 +@see CCamera::CCameraSnapshot
1.73 +*/
1.74 +static const TUid KECamSnapshotUid = {KECamSnapshotUidValue};
1.75 +
1.76 +/**
1.77 +This class allows the client to request snapshot data in a specified image format for both still images and video.
1.78 +
1.79 +Snapshot object may be created out of new classes: CCameraImageCapture and CCameraVideoCaptureControl. The client selects
1.80 +snapshot parameters calling PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters). It can then enable and
1.81 +disable the snapshot generation by calling EnableSnapshotL() and DisableSnapshotL(). The client application using this API
1.82 +shall provide MCaptureImageObserver and MCaptureVideoObserver interface. Callbacks available are MCaptureImageObserver::
1.83 +ClientSnapshotForImageReady and MCaptureVideoObserver::ClientSnapshotReady.
1.84 +
1.85 +Snapshots are supposed to be displayed on a particular viewfinder. So, while destruction, client shall destroy snapshot
1.86 +first. In general, child objects shall be destroyed before the parent objects.
1.87 +
1.88 +Following is valid for older clients who created snapshots using NewL method:-
1.89 +The client selects snapshot parameters calling PrepareSnapshotL(). It can then start and stop
1.90 +receiving notifications from the ECam implementation by calling StartSnapshot() and StopSnapshot().
1.91 +The client application using this API should provide MCameraObserver2 interface to be signalled,
1.92 +with event KUidECamEventCameraSnapshot, when snapshot data is available to be retrieved from
1.93 +the ECam implementation.
1.94 +The client can then retrieve the snapshot data from the ECam implementation calling SnapshotDataL().
1.95 +
1.96 +@note This class provides a standardised client interface for the camera snapshot. Classes cannot be derived from it.
1.97 +
1.98 +@note If the class methods leave, the output type parameter value is not guaranteed to be valid.
1.99 +
1.100 +@publishedPartner
1.101 +@prototype
1.102 +*/
1.103 +
1.104 +class CCamera::CCameraSnapshot: public CBase
1.105 + {
1.106 +
1.107 + friend class CCamera;
1.108 +
1.109 + friend CCamera::CCameraSnapshot* CCamera::CCameraImageCapture::GetSnapshotHandleL(TInt aClientViewFinderId) const;
1.110 + friend CCamera::CCameraSnapshot* CCamera::CCameraVideoCaptureControl::GetSnapshotHandleL(TInt aClientViewFinderId) const;
1.111 +
1.112 +public:
1.113 + /**
1.114 + Describes the state of snapshot.
1.115 + The enumeration list may be extended in future.
1.116 + */
1.117 + enum TSnapshotState
1.118 + {
1.119 + /** Snapshot has not been prepared. */
1.120 + ESnapshotNotCreated,
1.121 + /** Snapshot has been prepared but not yet enabled. */
1.122 + ESnapshotInactive,
1.123 + /** Snapshot has been prepared and enabled but not yet disabled. */
1.124 + ESnapshotActive,
1.125 + /** Snapshot has been disabled. */
1.126 + ESnapshotDisabled,
1.127 + };
1.128 +
1.129 + /**
1.130 + Specifies the video frames to be used in order to create snapshots fo video.
1.131 + The enumeration list may be extended in future.
1.132 + */
1.133 + enum TSnapshotVideoFrames
1.134 + {
1.135 + /** Snapshot for video created from first video frame. Used by default. */
1.136 + ESnapshotVideoFirstFrame,
1.137 + /** Snapshot for video created from last video frame. */
1.138 + ESnapshotVideoLastFrame,
1.139 + /** Snapshot for video created from first and last video frame. */
1.140 + ESnapshotVideoFirstAndLastFrame,
1.141 + /** Snapshot for video created from every video frame. */
1.142 + ESnapshotVideoEveryFrame
1.143 + };
1.144 +
1.145 + /**
1.146 + Specifes the parameters necessary for client snapshots.
1.147 + */
1.148 + class TSnapshotParameters
1.149 + {
1.150 + public:
1.151 + IMPORT_C TSnapshotParameters();
1.152 +
1.153 + IMPORT_C TUint Size() const;
1.154 + IMPORT_C TUint Version() const;
1.155 +
1.156 + IMPORT_C TBool IsAspectRatioMaintained() const;
1.157 +
1.158 + IMPORT_C void SetAspectRatioState(TBool aIsAspectRatioMaintained);
1.159 +
1.160 + private:
1.161 + //for future expansion
1.162 + TUint iSize:24;
1.163 + TUint iVersion:8;
1.164 +
1.165 + // reserved for future expansion
1.166 + TInt iReserved1;
1.167 + TInt iReserved2;
1.168 + TInt iReserved3;
1.169 +
1.170 + TInt iReserved5;
1.171 + TInt iReserved6;
1.172 + TInt iReserved7;
1.173 +
1.174 + TUint iReserved4:31;
1.175 +
1.176 + /** Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down */
1.177 + TUint iIsAspectRatioMaintained:1;
1.178 +
1.179 + public:
1.180 + /** The image format that the snapshot must have. */
1.181 + CCamera::TFormat iFormat;
1.182 + /** The top left corner position (in pixels) which determines the layout of the snapshot image
1.183 + within the dimensions provided by the iSnapshotSize parameter when the snapshot has been scaled
1.184 + maintaining its aspect ratio. ECam implementation is supposed to calculate the proportion between
1.185 + the top left corner and the snapshot size and hence use it, in case, the snapshot size used is different. */
1.186 + TPoint iPosition;
1.187 + /** The size of the snapshot in pixels. The snapshot size may be changed by the implementation to meet hardware
1.188 + requirements, performance etc. */
1.189 + TSize iSnapshotSize;
1.190 + };
1.191 +
1.192 +public:
1.193 + IMPORT_C static CCameraSnapshot* NewL(CCamera& aCamera);
1.194 +
1.195 + IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
1.196 +
1.197 + IMPORT_C TUint32 SupportedFormats();
1.198 +
1.199 + IMPORT_C void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio);
1.200 + IMPORT_C void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio);
1.201 +
1.202 + IMPORT_C void SetBgColorL(const TRgb& aBgColor);
1.203 + IMPORT_C void SetPositionL(const TPoint& aPosition);
1.204 +
1.205 + IMPORT_C TBool IsSnapshotActive() const;
1.206 + IMPORT_C void StartSnapshot();
1.207 + IMPORT_C void StopSnapshot();
1.208 +
1.209 + IMPORT_C MCameraBuffer& SnapshotDataL(RArray<TInt>& aFrameIndexOrder);
1.210 +
1.211 + IMPORT_C ~CCameraSnapshot();
1.212 +
1.213 + IMPORT_C void PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters);
1.214 +
1.215 + IMPORT_C void GetSnapshotParametersL(TSnapshotParameters& aSnapshotParameters);
1.216 + IMPORT_C void SetSnapshotParametersL(const TSnapshotParameters& aSnapshotParameters);
1.217 +
1.218 + IMPORT_C void GetSnapshotStatusL(TSnapshotState& aSnapshotState) const;
1.219 +
1.220 + IMPORT_C void SelectSnapshotVideoFramesL(TSnapshotVideoFrames aSnapshotVideoFrames);
1.221 +
1.222 + IMPORT_C void EnableSnapshotL();
1.223 + IMPORT_C void DisableSnapshotL();
1.224 +
1.225 +private:
1.226 + IMPORT_C static CCameraSnapshot* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory, TInt aClientViewFinderId);
1.227 +
1.228 + CCameraSnapshot(CCamera& aOwner);
1.229 + void ConstructL();
1.230 + void ConstructL(const MImplementationFactory& aImplFactory, TInt aClientViewFinderId);
1.231 +
1.232 +private:
1.233 + CCamera& iOwner;
1.234 + MCameraSnapshot* iImpl; // not owned
1.235 + MCameraSnapshot2* iImpl2; // not owned
1.236 + };
1.237 +
1.238 +#endif // CAMERASNAPSHOT_H