sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <ecam/mcamerasnapshot.h>
|
sl@0
|
23 |
#include <ecamimageprocessing.h>
|
sl@0
|
24 |
#include <ecam/camerahistogram.h>
|
sl@0
|
25 |
#include <ecam/implementationfactoryintf.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
Factory function that creates a new camera snapshot object on the heap.
|
sl@0
|
29 |
|
sl@0
|
30 |
@param aCamera
|
sl@0
|
31 |
A reference to the camera object for which a camera snapshot object is to be created.
|
sl@0
|
32 |
|
sl@0
|
33 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
34 |
|
sl@0
|
35 |
@return A pointer to the newly created camera snapshot object.
|
sl@0
|
36 |
|
sl@0
|
37 |
@note This will be deprecated shortly. Snapshot should be used via CCameraImageCapture::GetSnapshotHandleL() or
|
sl@0
|
38 |
CCameraVideoCaptureControl::GetSnapshotHandleL().
|
sl@0
|
39 |
|
sl@0
|
40 |
@note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
EXPORT_C CCamera::CCameraSnapshot* CCamera::CCameraSnapshot::NewL(CCamera& aCamera)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
CCamera::CCameraSnapshot* self = new (ELeave) CCamera::CCameraSnapshot(aCamera);
|
sl@0
|
45 |
CleanupStack::PushL(self);
|
sl@0
|
46 |
self->ConstructL();
|
sl@0
|
47 |
CleanupStack::Pop(self);
|
sl@0
|
48 |
return self;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
@internalComponent
|
sl@0
|
53 |
|
sl@0
|
54 |
Factory function that creates a new camera snapshot object specifically for image capture or video capture.
|
sl@0
|
55 |
|
sl@0
|
56 |
@param aCamera
|
sl@0
|
57 |
A reference to the camera object for which a camera snapshot object is to be created.
|
sl@0
|
58 |
|
sl@0
|
59 |
@param aImplFactory
|
sl@0
|
60 |
A reference to the MImplementationFactory derived object.
|
sl@0
|
61 |
|
sl@0
|
62 |
@param aClientViewFinderId
|
sl@0
|
63 |
The client viewfinder on which this client snapshot will be displayed.
|
sl@0
|
64 |
|
sl@0
|
65 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
66 |
|
sl@0
|
67 |
@return A pointer to a fully constructed camera snapshot object.
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
EXPORT_C CCamera::CCameraSnapshot* CCamera::CCameraSnapshot::CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory, TInt aClientViewFinderId)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
CCamera::CCameraSnapshot* self = new (ELeave) CCamera::CCameraSnapshot(aCamera);
|
sl@0
|
72 |
CleanupStack::PushL(self);
|
sl@0
|
73 |
self->ConstructL(aImplFactory, aClientViewFinderId);
|
sl@0
|
74 |
CleanupStack::Pop(self);
|
sl@0
|
75 |
return self;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
CCameraSnapshot second phase constructor.
|
sl@0
|
80 |
|
sl@0
|
81 |
This function is used to initialise internal state of the object.
|
sl@0
|
82 |
It uses reference to the camera to retrieve snapshot interface pointer.
|
sl@0
|
83 |
|
sl@0
|
84 |
@leave KErrNotSupported if this functionality is not supported; also any system wide error.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
void CCamera::CCameraSnapshot::ConstructL()
|
sl@0
|
87 |
{
|
sl@0
|
88 |
iImpl = static_cast<MCameraSnapshot*>(iOwner.CustomInterface(KECamMCameraSnapshotUid));
|
sl@0
|
89 |
|
sl@0
|
90 |
if (iImpl == NULL)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
User::Leave(KErrNotSupported);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
iImpl2 = static_cast<MCameraSnapshot2*>(iOwner.CustomInterface(KECamMCameraSnapshot2Uid));
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
@internalComponent
|
sl@0
|
100 |
|
sl@0
|
101 |
CCameraSnapshot second phase constructor
|
sl@0
|
102 |
|
sl@0
|
103 |
Function used to initialise internal state of the object specifically for image capture or video capture.
|
sl@0
|
104 |
This may be used in other possible cases as well.
|
sl@0
|
105 |
|
sl@0
|
106 |
@param aImplFactory
|
sl@0
|
107 |
A constant reference to the MImplementationFactory derived object.
|
sl@0
|
108 |
|
sl@0
|
109 |
@param aClientViewFinderId
|
sl@0
|
110 |
The client viewfinder on which this client snapshot will be displayed.
|
sl@0
|
111 |
|
sl@0
|
112 |
@leave KErrNoMemory Out of memory; or any other error code as well.
|
sl@0
|
113 |
|
sl@0
|
114 |
@note This method is supposed to be used by this class only.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
void CCamera::CCameraSnapshot::ConstructL(const MImplementationFactory& aImplFactory, TInt aClientViewFinderId)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
TInt err = KErrNone;
|
sl@0
|
119 |
TAny* implPtr = NULL;
|
sl@0
|
120 |
|
sl@0
|
121 |
err = aImplFactory.GetImpl(implPtr, KECamMCameraSnapshotUid);
|
sl@0
|
122 |
if (err != KErrNone)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
User::Leave(err);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
iImpl = static_cast<MCameraSnapshot*>(implPtr);
|
sl@0
|
127 |
|
sl@0
|
128 |
implPtr = NULL;
|
sl@0
|
129 |
err = aImplFactory.GetImpl(implPtr, KECamMCameraSnapshot2Uid);
|
sl@0
|
130 |
if (err != KErrNone && err != KErrNotSupported)
|
sl@0
|
131 |
{
|
sl@0
|
132 |
User::Leave(err);
|
sl@0
|
133 |
}
|
sl@0
|
134 |
iImpl2 = static_cast<MCameraSnapshot2*>(implPtr);
|
sl@0
|
135 |
|
sl@0
|
136 |
iImpl2->SetClientViewFinderId(aClientViewFinderId);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
Constructor for the CCamera::CCameraSnapshot class.
|
sl@0
|
141 |
|
sl@0
|
142 |
@param aOwner
|
sl@0
|
143 |
A reference to the camera object for which a camera snapshot object is to be created.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
CCamera::CCameraSnapshot::CCameraSnapshot(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
@released
|
sl@0
|
151 |
|
sl@0
|
152 |
Destructor for the CCamera::CCameraSnapshot class.
|
sl@0
|
153 |
|
sl@0
|
154 |
@note The child objects(for example,hisotgrams) created out of this snapshot class object shall be
|
sl@0
|
155 |
delete beforehand.
|
sl@0
|
156 |
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
EXPORT_C CCamera::CCameraSnapshot::~CCameraSnapshot()
|
sl@0
|
159 |
{
|
sl@0
|
160 |
if (iImpl != NULL)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
iImpl->Release();
|
sl@0
|
163 |
}
|
sl@0
|
164 |
if (iImpl2 != NULL)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
iImpl2->Release();
|
sl@0
|
167 |
}
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
/**
|
sl@0
|
171 |
@released
|
sl@0
|
172 |
|
sl@0
|
173 |
Gets a list of camera formats for which the ECam implementation supports snapshots.
|
sl@0
|
174 |
|
sl@0
|
175 |
@return Bit field containing the supported camera formats as CCamera::TFormat values.
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
EXPORT_C TUint32 CCamera::CCameraSnapshot::SupportedFormats()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
return iImpl->SupportedFormats();
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
/**
|
sl@0
|
183 |
@deprecated Use void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
184 |
|
sl@0
|
185 |
Sets the properties of the snapshot data including the background colour and the position of the snapshot.
|
sl@0
|
186 |
|
sl@0
|
187 |
@param aFormat
|
sl@0
|
188 |
The image format that the snapshot must have.
|
sl@0
|
189 |
@param aPosition
|
sl@0
|
190 |
The top left corner position (in pixels) which determines the layout of the snapshot image
|
sl@0
|
191 |
within the dimensions provided by the aSize parameter when the snapshot has been scaled
|
sl@0
|
192 |
maintaining its aspect ratio. See also SetPositionL().
|
sl@0
|
193 |
@param aSize
|
sl@0
|
194 |
The size of the snapshot in pixels.
|
sl@0
|
195 |
@param aBgColor
|
sl@0
|
196 |
The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
|
sl@0
|
197 |
and does not fully fill the dimension provided by the aSize parameter. See also SetBgColorL().
|
sl@0
|
198 |
@param aMaintainAspectRatio
|
sl@0
|
199 |
Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
|
sl@0
|
200 |
|
sl@0
|
201 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
202 |
*/
|
sl@0
|
203 |
EXPORT_C void CCamera::CCameraSnapshot::PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
iImpl->PrepareSnapshotL(aFormat, aPosition, aSize, aBgColor, aMaintainAspectRatio);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
@deprecated Use void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
210 |
|
sl@0
|
211 |
Sets the properties of the snapshot data, excluding the background colour and the position of the snapshot.
|
sl@0
|
212 |
This method can be used when the client wishes to determine the layout and background colour after the
|
sl@0
|
213 |
snapshot image has been generated. See also SetPositionL() and SetBgColorL().
|
sl@0
|
214 |
|
sl@0
|
215 |
@param aFormat
|
sl@0
|
216 |
The image format that the snapshot must have.
|
sl@0
|
217 |
@param aSize
|
sl@0
|
218 |
The size of the snapshot in pixels.
|
sl@0
|
219 |
@param aMaintainAspectRatio
|
sl@0
|
220 |
Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
|
sl@0
|
221 |
|
sl@0
|
222 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
223 |
*/
|
sl@0
|
224 |
EXPORT_C void CCamera::CCameraSnapshot::PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio)
|
sl@0
|
225 |
{
|
sl@0
|
226 |
iImpl->PrepareSnapshotL(aFormat, aSize, aMaintainAspectRatio);
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
/**
|
sl@0
|
230 |
@deprecated Use void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
231 |
|
sl@0
|
232 |
Sets the background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
|
sl@0
|
233 |
and does not fully fill the snapshot size as specified in PrepareSnapshot().
|
sl@0
|
234 |
|
sl@0
|
235 |
@param aBgColor
|
sl@0
|
236 |
The new background colour.
|
sl@0
|
237 |
|
sl@0
|
238 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
EXPORT_C void CCamera::CCameraSnapshot::SetBgColorL(const TRgb& aBgColor)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
iImpl->SetBgColorL(aBgColor);
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
/**
|
sl@0
|
246 |
@deprecated Use void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
247 |
|
sl@0
|
248 |
Sets the top left corner position (in pixels), where the snapshot should be laid out after scaling
|
sl@0
|
249 |
down (maintaining its aspect ratio). The position is within the dimensions provided by the snapshot
|
sl@0
|
250 |
size specified in PrepareSnapshot().
|
sl@0
|
251 |
|
sl@0
|
252 |
@param aPosition
|
sl@0
|
253 |
The top left corner position in pixels of the snapshot.
|
sl@0
|
254 |
|
sl@0
|
255 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
256 |
*/
|
sl@0
|
257 |
EXPORT_C void CCamera::CCameraSnapshot::SetPositionL(const TPoint& aPosition)
|
sl@0
|
258 |
{
|
sl@0
|
259 |
iImpl->SetPositionL(aPosition);
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
/**
|
sl@0
|
263 |
@deprecated Use void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const;
|
sl@0
|
264 |
|
sl@0
|
265 |
Determines if the snapshot feature is active.
|
sl@0
|
266 |
|
sl@0
|
267 |
@return ETrue, if StartSnapshot() has been called, otherwise EFalse.
|
sl@0
|
268 |
*/
|
sl@0
|
269 |
EXPORT_C TBool CCamera::CCameraSnapshot::IsSnapshotActive() const
|
sl@0
|
270 |
{
|
sl@0
|
271 |
return iImpl->IsSnapshotActive();
|
sl@0
|
272 |
}
|
sl@0
|
273 |
|
sl@0
|
274 |
/**
|
sl@0
|
275 |
@deprecated Use void EnableSnapshotL();
|
sl@0
|
276 |
|
sl@0
|
277 |
Activates the snapshot feature. Calls to this method when the snapshot feature is already active
|
sl@0
|
278 |
will be ignored.
|
sl@0
|
279 |
|
sl@0
|
280 |
The client will not receive snapshot notifications until the snapshot feature is activated.
|
sl@0
|
281 |
|
sl@0
|
282 |
@see KUidECamEventCameraSnapshot
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
EXPORT_C void CCamera::CCameraSnapshot::StartSnapshot()
|
sl@0
|
285 |
{
|
sl@0
|
286 |
iImpl->StartSnapshot();
|
sl@0
|
287 |
}
|
sl@0
|
288 |
|
sl@0
|
289 |
/**
|
sl@0
|
290 |
@deprecated Use void DisableSnapshotL();
|
sl@0
|
291 |
|
sl@0
|
292 |
Deactivates the snapshot feature if it is active.
|
sl@0
|
293 |
|
sl@0
|
294 |
Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
EXPORT_C void CCamera::CCameraSnapshot::StopSnapshot()
|
sl@0
|
297 |
{
|
sl@0
|
298 |
iImpl->StopSnapshot();
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
/**
|
sl@0
|
302 |
@deprecated Use callbacks: MCaptureImageObserver::ClientSnapshotForImageReady and MCaptureVideoObserver::ClientSnapshotReady
|
sl@0
|
303 |
|
sl@0
|
304 |
Returns the snapshot data from ECam implementation to the client.
|
sl@0
|
305 |
|
sl@0
|
306 |
The data is returned in an MCameraBuffer object. In the case where the driving mode returns more
|
sl@0
|
307 |
than one image (burst mode, bracket mode, etc.) the buffer contains several snapshots which may
|
sl@0
|
308 |
be returned in any order. The aFrameIndexOrder array provides the image sequence numbers in the
|
sl@0
|
309 |
order in which the snapshots for those images are returned within the MCameraBuffer.
|
sl@0
|
310 |
|
sl@0
|
311 |
@note The client application using this API should provide MCameraObserver2 interface to be
|
sl@0
|
312 |
signalled when snapshot data is available to be retrieved from the ECAM implementation.
|
sl@0
|
313 |
|
sl@0
|
314 |
@see KUidECamEventCameraSnapshot
|
sl@0
|
315 |
|
sl@0
|
316 |
@param aFrameIndexOrder
|
sl@0
|
317 |
A reference to an array that will receive the image sequence numbers in the order to which
|
sl@0
|
318 |
the snapshots within MCameraBuffer relate.
|
sl@0
|
319 |
|
sl@0
|
320 |
@return A reference to an MCameraBuffer which will contain the returned snapshot image data.
|
sl@0
|
321 |
|
sl@0
|
322 |
@leave KErrNoMemory if the ECam implementation has not been able to create the camera buffer;
|
sl@0
|
323 |
also any system wide error.
|
sl@0
|
324 |
*/
|
sl@0
|
325 |
EXPORT_C MCameraBuffer& CCamera::CCameraSnapshot::SnapshotDataL(RArray<TInt>& aFrameIndexOrder)
|
sl@0
|
326 |
{
|
sl@0
|
327 |
return iImpl->SnapshotDataL(aFrameIndexOrder);
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
/**
|
sl@0
|
331 |
Retrieve pointer to histogram API in order to use it specifically for snapshots.
|
sl@0
|
332 |
|
sl@0
|
333 |
@return Pointer to use histogram API specifically for the snapshots.
|
sl@0
|
334 |
|
sl@0
|
335 |
@leave May leave with any error code.
|
sl@0
|
336 |
|
sl@0
|
337 |
@note Different types of histogram may be used for a snapshot. Every time this method will be called on the
|
sl@0
|
338 |
CCameraSnapshot class object, a new type of histogram will be created.
|
sl@0
|
339 |
*/
|
sl@0
|
340 |
EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraSnapshot::CreateHistogramHandleL() const
|
sl@0
|
341 |
{
|
sl@0
|
342 |
if(iImpl2 != NULL)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
345 |
|
sl@0
|
346 |
iImpl2->CreateHistogramImplFactoryL(implFactory);
|
sl@0
|
347 |
|
sl@0
|
348 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
349 |
CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
|
sl@0
|
350 |
CleanupStack::Pop(implFactory);
|
sl@0
|
351 |
|
sl@0
|
352 |
implFactory->Release();
|
sl@0
|
353 |
return histogram;
|
sl@0
|
354 |
}
|
sl@0
|
355 |
else
|
sl@0
|
356 |
{
|
sl@0
|
357 |
return NULL;
|
sl@0
|
358 |
}
|
sl@0
|
359 |
}
|
sl@0
|
360 |
|
sl@0
|
361 |
/**
|
sl@0
|
362 |
Sets the properties of the snapshot. ECam implementation may use a different size than that specified by this method.
|
sl@0
|
363 |
GetSnapshotParametersL may be used by the client know the actual parameters being used for snapshot creation.
|
sl@0
|
364 |
|
sl@0
|
365 |
@param aSnapshotParameters
|
sl@0
|
366 |
The snaspshot parameters.
|
sl@0
|
367 |
|
sl@0
|
368 |
@leave May leave with any error code.
|
sl@0
|
369 |
|
sl@0
|
370 |
@note This method is used to provide snapshot parameters.
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
EXPORT_C void CCamera::CCameraSnapshot::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)
|
sl@0
|
373 |
{
|
sl@0
|
374 |
if(iImpl2 != NULL)
|
sl@0
|
375 |
{
|
sl@0
|
376 |
iImpl2->PrepareSnapshotL(aSnapshotParameters);
|
sl@0
|
377 |
}
|
sl@0
|
378 |
else
|
sl@0
|
379 |
{
|
sl@0
|
380 |
User::Leave(KErrNotSupported);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
}
|
sl@0
|
383 |
|
sl@0
|
384 |
/**
|
sl@0
|
385 |
Retrieves the snapshot parameters used by the ECam implementation for snapshot creation.
|
sl@0
|
386 |
|
sl@0
|
387 |
@param aSnapshotParameters
|
sl@0
|
388 |
Retrieves the currently used snapshot parameters.
|
sl@0
|
389 |
|
sl@0
|
390 |
@leave May leave with any error code.
|
sl@0
|
391 |
|
sl@0
|
392 |
@note This method is used to retrieve snapshot parameters.
|
sl@0
|
393 |
*/
|
sl@0
|
394 |
EXPORT_C void CCamera::CCameraSnapshot::GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)
|
sl@0
|
395 |
{
|
sl@0
|
396 |
if(iImpl2 != NULL)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
iImpl2->GetSnapshotParametersL(aSnapshotParameters);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
else
|
sl@0
|
401 |
{
|
sl@0
|
402 |
User::Leave(KErrNotSupported);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
}
|
sl@0
|
405 |
|
sl@0
|
406 |
/**
|
sl@0
|
407 |
Sets/updates the snapshot parameters.
|
sl@0
|
408 |
|
sl@0
|
409 |
@param aSnapshotParameters
|
sl@0
|
410 |
The desired snapshot parameters.
|
sl@0
|
411 |
|
sl@0
|
412 |
@leave May leave with any error code.
|
sl@0
|
413 |
|
sl@0
|
414 |
@note This method is used to set/update snapshot parameters.
|
sl@0
|
415 |
*/
|
sl@0
|
416 |
EXPORT_C void CCamera::CCameraSnapshot::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)
|
sl@0
|
417 |
{
|
sl@0
|
418 |
if(iImpl2 != NULL)
|
sl@0
|
419 |
{
|
sl@0
|
420 |
iImpl2->SetSnapshotParametersL(aSnapshotParameters);
|
sl@0
|
421 |
}
|
sl@0
|
422 |
else
|
sl@0
|
423 |
{
|
sl@0
|
424 |
User::Leave(KErrNotSupported);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
}
|
sl@0
|
427 |
|
sl@0
|
428 |
/**
|
sl@0
|
429 |
Retrieves the current status for the snapshot.
|
sl@0
|
430 |
|
sl@0
|
431 |
@param aSnapshotState
|
sl@0
|
432 |
Retrieves information about the snapshot current state.
|
sl@0
|
433 |
|
sl@0
|
434 |
@leave May leave with any error code.
|
sl@0
|
435 |
|
sl@0
|
436 |
@note This method is used to retrieve the snapshot status.
|
sl@0
|
437 |
*/
|
sl@0
|
438 |
EXPORT_C void CCamera::CCameraSnapshot::GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const
|
sl@0
|
439 |
{
|
sl@0
|
440 |
if(iImpl2 != NULL)
|
sl@0
|
441 |
{
|
sl@0
|
442 |
iImpl2->GetSnapshotStatusL(aSnapshotState);
|
sl@0
|
443 |
}
|
sl@0
|
444 |
else
|
sl@0
|
445 |
{
|
sl@0
|
446 |
User::Leave(KErrNotSupported);
|
sl@0
|
447 |
}
|
sl@0
|
448 |
}
|
sl@0
|
449 |
|
sl@0
|
450 |
/**
|
sl@0
|
451 |
The method specifies the frames to be used from video captured data in order to create snapshot for video.
|
sl@0
|
452 |
|
sl@0
|
453 |
@param aSnapshotVideoFrames
|
sl@0
|
454 |
A TSnapshotVideoFrames used to specify the desired frames to be used for creating snapshots for video.
|
sl@0
|
455 |
|
sl@0
|
456 |
@leave May leave with any error code.
|
sl@0
|
457 |
*/
|
sl@0
|
458 |
EXPORT_C void CCamera::CCameraSnapshot::SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames)
|
sl@0
|
459 |
{
|
sl@0
|
460 |
if(iImpl2 != NULL)
|
sl@0
|
461 |
{
|
sl@0
|
462 |
iImpl2->SelectSnapshotVideoFramesL(aSnapshotVideoFrames);
|
sl@0
|
463 |
}
|
sl@0
|
464 |
else
|
sl@0
|
465 |
{
|
sl@0
|
466 |
User::Leave(KErrNotSupported);
|
sl@0
|
467 |
}
|
sl@0
|
468 |
}
|
sl@0
|
469 |
|
sl@0
|
470 |
/**
|
sl@0
|
471 |
Activates the snapshot feature. Calls to this method when the snapshot feature is already active will be ignored.
|
sl@0
|
472 |
|
sl@0
|
473 |
The client will not receive snapshot notifications until the snapshot feature is activated.
|
sl@0
|
474 |
|
sl@0
|
475 |
Client shall implement the observers: MCaptureImageObserver and MCaptureVideoObserver. Snapshot notifications will be send
|
sl@0
|
476 |
to the clients via these observers and not through events.
|
sl@0
|
477 |
|
sl@0
|
478 |
@leave KErrNotSupported if the implementation of this method is not present.
|
sl@0
|
479 |
*/
|
sl@0
|
480 |
EXPORT_C void CCamera::CCameraSnapshot::EnableSnapshotL()
|
sl@0
|
481 |
{
|
sl@0
|
482 |
if(iImpl2 != NULL)
|
sl@0
|
483 |
{
|
sl@0
|
484 |
iImpl2->EnableSnapshot();
|
sl@0
|
485 |
}
|
sl@0
|
486 |
else
|
sl@0
|
487 |
{
|
sl@0
|
488 |
User::Leave(KErrNotSupported);
|
sl@0
|
489 |
}
|
sl@0
|
490 |
}
|
sl@0
|
491 |
|
sl@0
|
492 |
/**
|
sl@0
|
493 |
Deactivates the snapshot feature if it is active.
|
sl@0
|
494 |
|
sl@0
|
495 |
Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
|
sl@0
|
496 |
|
sl@0
|
497 |
@leave KErrNotSupported if the implementation of this method is not present.
|
sl@0
|
498 |
*/
|
sl@0
|
499 |
EXPORT_C void CCamera::CCameraSnapshot::DisableSnapshotL()
|
sl@0
|
500 |
{
|
sl@0
|
501 |
if(iImpl2 != NULL)
|
sl@0
|
502 |
{
|
sl@0
|
503 |
iImpl2->DisableSnapshot();
|
sl@0
|
504 |
}
|
sl@0
|
505 |
else
|
sl@0
|
506 |
{
|
sl@0
|
507 |
User::Leave(KErrNotSupported);
|
sl@0
|
508 |
}
|
sl@0
|
509 |
}
|
sl@0
|
510 |
|
sl@0
|
511 |
/**
|
sl@0
|
512 |
Constructor for the TSnapshotParameters class.
|
sl@0
|
513 |
Sets the size and version of this class.
|
sl@0
|
514 |
*/
|
sl@0
|
515 |
EXPORT_C CCamera::CCameraSnapshot::TSnapshotParameters::TSnapshotParameters()
|
sl@0
|
516 |
{
|
sl@0
|
517 |
iSize = sizeof(CCamera::CCameraSnapshot::TSnapshotParameters);
|
sl@0
|
518 |
iVersion = KECamSnapshotParametersCurrentVersion;
|
sl@0
|
519 |
}
|
sl@0
|
520 |
|
sl@0
|
521 |
/**
|
sl@0
|
522 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
523 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
524 |
Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
|
sl@0
|
525 |
is made to run on an old implementation, an error may occur once the old implementation detects this by getting
|
sl@0
|
526 |
the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
|
sl@0
|
527 |
corrrectly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
528 |
|
sl@0
|
529 |
@return The size of the class.
|
sl@0
|
530 |
|
sl@0
|
531 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
532 |
*/
|
sl@0
|
533 |
EXPORT_C TUint CCamera::CCameraSnapshot::TSnapshotParameters::Size() const
|
sl@0
|
534 |
{
|
sl@0
|
535 |
return iSize;
|
sl@0
|
536 |
}
|
sl@0
|
537 |
|
sl@0
|
538 |
/**
|
sl@0
|
539 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
540 |
members get used at a later stage.
|
sl@0
|
541 |
|
sl@0
|
542 |
@return The version of the class.
|
sl@0
|
543 |
|
sl@0
|
544 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
545 |
*/
|
sl@0
|
546 |
EXPORT_C TUint CCamera::CCameraSnapshot::TSnapshotParameters::Version() const
|
sl@0
|
547 |
{
|
sl@0
|
548 |
return iVersion;
|
sl@0
|
549 |
}
|
sl@0
|
550 |
|
sl@0
|
551 |
/**
|
sl@0
|
552 |
Indicates whether the aspect ratio of the snapshot image has to maintained (if ETrue) or not (if EFalse)
|
sl@0
|
553 |
while scaling down.
|
sl@0
|
554 |
|
sl@0
|
555 |
@return TBool: ETrue implies aspect ratio has to be maintained, EFalse otherwise.
|
sl@0
|
556 |
|
sl@0
|
557 |
@see CCamera::CCameraSnapshot::TSnapshotParameters::iIsAspectRatioMaintained
|
sl@0
|
558 |
*/
|
sl@0
|
559 |
EXPORT_C TBool CCamera::CCameraSnapshot::TSnapshotParameters::IsAspectRatioMaintained() const
|
sl@0
|
560 |
{
|
sl@0
|
561 |
if (iIsAspectRatioMaintained)
|
sl@0
|
562 |
{
|
sl@0
|
563 |
return ETrue;
|
sl@0
|
564 |
}
|
sl@0
|
565 |
else
|
sl@0
|
566 |
{
|
sl@0
|
567 |
return EFalse;
|
sl@0
|
568 |
}
|
sl@0
|
569 |
}
|
sl@0
|
570 |
|
sl@0
|
571 |
/**
|
sl@0
|
572 |
Sets the state to inform whether the aspect ratio of the snapshot image has to be maintained or not while scaling
|
sl@0
|
573 |
down.
|
sl@0
|
574 |
|
sl@0
|
575 |
@param aIsAspectRatioMaintained
|
sl@0
|
576 |
ETrue implies must be maintained, EFalse otherwise.
|
sl@0
|
577 |
|
sl@0
|
578 |
@see CCamera::CCameraSnapshot::TSnapshotParameters::iIsAspectRatioMaintained
|
sl@0
|
579 |
*/
|
sl@0
|
580 |
EXPORT_C void CCamera::CCameraSnapshot::TSnapshotParameters::SetAspectRatioState(TBool aIsAspectRatioMaintained)
|
sl@0
|
581 |
{
|
sl@0
|
582 |
iIsAspectRatioMaintained = static_cast<TUint>(aIsAspectRatioMaintained);
|
sl@0
|
583 |
}
|