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 |
#include <ecam/ecamcapturecontrolintf.h>
|
sl@0
|
17 |
#include <ecam/implementationfactoryintf.h>
|
sl@0
|
18 |
#include <ecamimageprocessing.h>
|
sl@0
|
19 |
#include <ecam/camerahistogram.h>
|
sl@0
|
20 |
#include "ecamversion.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
23 |
#include <ecamcapturecontrolconst.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
const TInt KECamVideoCaptureBit0 = 0x00;
|
sl@0
|
26 |
const TInt KECamClientVideoCaptureBit1 = 0x01;
|
sl@0
|
27 |
const TInt KECamDirectVideoCaptureBit2 = 0x02;
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Factory function for creating the CCameraPreImageCaptureControl object.
|
sl@0
|
31 |
|
sl@0
|
32 |
@param aCamera
|
sl@0
|
33 |
a reference to a CCamera object providing the settings.
|
sl@0
|
34 |
|
sl@0
|
35 |
@param aPreImageCaptureControlObserver
|
sl@0
|
36 |
Reference to the pre image capture control observer.
|
sl@0
|
37 |
|
sl@0
|
38 |
@return a pointer to a fully constructed CCameraPreImageCaptureControl object.
|
sl@0
|
39 |
|
sl@0
|
40 |
@leave KErrNoMemory Out of memory Or any other system-wide error code.
|
sl@0
|
41 |
|
sl@0
|
42 |
@leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
EXPORT_C CCamera::CCameraPreImageCaptureControl* CCamera::CCameraPreImageCaptureControl::NewL(CCamera& aCamera, MPreImageCaptureControlObserver& aPreImageCaptureControlObserver)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
if(aCamera.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
User::Leave(KErrExtensionNotSupported);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
CCamera::CCameraPreImageCaptureControl* self = new (ELeave)CCamera::CCameraPreImageCaptureControl(aCamera);
|
sl@0
|
52 |
CleanupStack::PushL(self);
|
sl@0
|
53 |
self->ConstructL(aPreImageCaptureControlObserver);
|
sl@0
|
54 |
CleanupStack::Pop(self);
|
sl@0
|
55 |
|
sl@0
|
56 |
return self;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
CCameraPreImageCaptureControl Constructor.
|
sl@0
|
61 |
|
sl@0
|
62 |
@param aOwner
|
sl@0
|
63 |
a reference to a CCamera object.
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
CCamera::CCameraPreImageCaptureControl::CCameraPreImageCaptureControl(CCamera& aOwner):iOwner(aOwner), iImpl(NULL)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
CCameraPreImageCaptureControl second phase constructor.
|
sl@0
|
71 |
|
sl@0
|
72 |
Function used to initialise internal state of the object. Uses reference to the camera to retrieve
|
sl@0
|
73 |
PreImageCaptureControl interface pointer.
|
sl@0
|
74 |
|
sl@0
|
75 |
@param aPreImageCaptureControlObserver
|
sl@0
|
76 |
Reference to the pre image capture control observer.
|
sl@0
|
77 |
|
sl@0
|
78 |
@leave KErrNoMemory Out of memory Or any other system-wide error code.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
void CCamera::CCameraPreImageCaptureControl::ConstructL(MPreImageCaptureControlObserver& aPreImageCaptureControlObserver)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
iImpl = static_cast<MCameraPreImageCaptureControl*>(iOwner.CustomInterface(KECamMCameraPreImageCaptureControlUid));
|
sl@0
|
83 |
|
sl@0
|
84 |
if (iImpl == NULL)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
User::Leave(KErrNotSupported);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
iImpl->SetPreImageCaptureControlObserver(aPreImageCaptureControlObserver);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
Destructor
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
EXPORT_C CCamera::CCameraPreImageCaptureControl::~CCameraPreImageCaptureControl()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
if (iImpl != NULL)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
iImpl->Release();
|
sl@0
|
100 |
}
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
Retrieves information regarding the direct snapshot feature support. Direct Snapshot, if supported, can be created
|
sl@0
|
105 |
out of version2 direct viewfinder object only.
|
sl@0
|
106 |
|
sl@0
|
107 |
@param aDirectSnapshotSupportInfo
|
sl@0
|
108 |
This is a bit field providing supported direct snapshot of type TDirectSnapshotType
|
sl@0
|
109 |
|
sl@0
|
110 |
@leave May leave with any error code.
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetDirectSnapshotSupportInfoL(TUint& aDirectSnapshotSupportInfo) const
|
sl@0
|
113 |
{
|
sl@0
|
114 |
iImpl->GetDirectSnapshotSupportInfoL(aDirectSnapshotSupportInfo);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
Retrieves the settings supported for embedded still captures. Possibilty exists that not all the settings supported for
|
sl@0
|
119 |
normal still image captures are supported for embedded still captures as well.
|
sl@0
|
120 |
|
sl@0
|
121 |
@param aSupportedEmbeddedStillCaptureSettings
|
sl@0
|
122 |
Array of TUid which retrieves the supported embedded still captures. Empty list indicated that no settings are
|
sl@0
|
123 |
supported for embedded still captures.
|
sl@0
|
124 |
|
sl@0
|
125 |
@leave May leave with any error code.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetSupportedEmbeddedStillCaptureSettingsL(RArray<TUid>& aSupportedEmbeddedStillCaptureSettings) const
|
sl@0
|
128 |
{
|
sl@0
|
129 |
iImpl->GetSupportedEmbeddedStillCaptureSettingsL(aSupportedEmbeddedStillCaptureSettings);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
/**
|
sl@0
|
133 |
Retrieves information regarding the supported direct saving state. If used, still images are saved in files rather than
|
sl@0
|
134 |
providing clients the MCameraImageBuffer. Direct saving to file will continue even if the client application gets closed
|
sl@0
|
135 |
for any reasons.
|
sl@0
|
136 |
|
sl@0
|
137 |
@param aSupportedDirectSavingType
|
sl@0
|
138 |
Retrieves the enum specifying supported TDirectSavingType.
|
sl@0
|
139 |
If EDirectSavingNotUsed, direct saving not supported. Images will be received in buffer MCameraImageBuffer.
|
sl@0
|
140 |
|
sl@0
|
141 |
If EDirectSavingHighResolutionFileOnly, direct saving to file is supported. But no cut down version of the image
|
sl@0
|
142 |
will be saved to file. Callback used is MCaptureImageObserver::ImageDirectSavingCompleted().
|
sl@0
|
143 |
|
sl@0
|
144 |
If EDirectSavingWithLowerResolutionFile, Direct saving to file is supported. Also, a cut down version of the image
|
sl@0
|
145 |
will be saved to another specified file. Callbacks used are MCaptureImageObserver::ImageDirectSavingCompleted() for
|
sl@0
|
146 |
actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() for lower resolution image.
|
sl@0
|
147 |
|
sl@0
|
148 |
@leave May leave with any error code.
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetSupportedDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl
|
sl@0
|
151 |
::TDirectSavingType& aSupportedDirectSavingType) const
|
sl@0
|
152 |
{
|
sl@0
|
153 |
iImpl->GetSupportedDirectSavingTypeL(aSupportedDirectSavingType);
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
/**
|
sl@0
|
157 |
Provides the base name for file used to save images. If there are sequential images, files will be created by
|
sl@0
|
158 |
implementation with names appearing as base name and appended by increasing integers which would start from
|
sl@0
|
159 |
aStartingSequenceNumber. This is used for the original image only, but not for the cut down version of the original
|
sl@0
|
160 |
image.
|
sl@0
|
161 |
|
sl@0
|
162 |
@param aFilename
|
sl@0
|
163 |
A const TDesC8&: Base name for files which ECam implementation needs to create in order to collect every sequential
|
sl@0
|
164 |
image.
|
sl@0
|
165 |
|
sl@0
|
166 |
@param aStartingSequenceNumber
|
sl@0
|
167 |
The starting sequence number which will be appended to the base name 'aFilename'. The sequence number will keep
|
sl@0
|
168 |
on increasing for every individual still image capture.
|
sl@0
|
169 |
|
sl@0
|
170 |
@leave May leave with any error code.
|
sl@0
|
171 |
|
sl@0
|
172 |
@note It is upto the implementation how many digits it uses for sequence number. Accordingly, padding will be done with
|
sl@0
|
173 |
zeroes.
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::SetSequentialImageFilenameL(const TDesC8& aFilename, TInt aStartingSequenceNumber)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
iImpl->SetSequentialImageFilenameL(aFilename, aStartingSequenceNumber);
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
Provides the base name for file used to save cut down version of the original images. If there are sequential images,
|
sl@0
|
182 |
files will be created by implementation with names appearing as base name and appended by increasing integers which would
|
sl@0
|
183 |
start from aStartingSequenceNumber. This is used for the cut down version of the original image.
|
sl@0
|
184 |
|
sl@0
|
185 |
@param aLowerResolutionFilename
|
sl@0
|
186 |
A const TDesC8&: Base name for files which ECam implementation needs to create in order to collect the cut down version
|
sl@0
|
187 |
of every sequential image.
|
sl@0
|
188 |
|
sl@0
|
189 |
@param aStartingSequenceNumber
|
sl@0
|
190 |
The starting sequence number which will be appended to the base name 'aFilename'. The sequence number will keep
|
sl@0
|
191 |
on increasing for every individual still image capture.
|
sl@0
|
192 |
|
sl@0
|
193 |
@leave May leave with any error code.
|
sl@0
|
194 |
|
sl@0
|
195 |
@note It is upto the implementation how many digits it uses for sequence number. Accordingly, padding will be done with
|
sl@0
|
196 |
zeroes.
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::SetLowerResolutionSequentialImageFilenameL(const TDesC8& aLowerResolutionFilename,
|
sl@0
|
199 |
TInt aStartingSequenceNumber)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
iImpl->SetLowerResolutionSequentialImageFilenameL(aLowerResolutionFilename, aStartingSequenceNumber);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
Retrieves the type of direct saving currently used. This will be represented as a direct saving state as given by
|
sl@0
|
206 |
TDirectSavingType.
|
sl@0
|
207 |
|
sl@0
|
208 |
Whether or not the direct saving option is used, client will receive the MCaptureImageObserver::ImageCaptureComplete()
|
sl@0
|
209 |
callback to mark the completion of the image capture operation.
|
sl@0
|
210 |
|
sl@0
|
211 |
@param aDirectSavingType
|
sl@0
|
212 |
Current type of the direct saving.
|
sl@0
|
213 |
|
sl@0
|
214 |
If EDirectSavingNotUsed, direct saving is not used. Images will be received in buffer MCameraImageBuffer through
|
sl@0
|
215 |
callback MCaptureImageObserver::ImageBufferReady().
|
sl@0
|
216 |
|
sl@0
|
217 |
If EDirectSavingHighResolutionFileOnly, direct saving to file option is currently used. But no cut down version of
|
sl@0
|
218 |
the image will be saved to file. Callback used is MCaptureImageObserver::ImageDirectSavingCompleted().
|
sl@0
|
219 |
|
sl@0
|
220 |
If EDirectSavingWithLowerResolutionFile, apart from direct saving to file option for the actual image, a cut down
|
sl@0
|
221 |
version of the image will be saved to another specified file. Callbacks used are MCaptureImageObserver::
|
sl@0
|
222 |
ImageDirectSavingCompleted() for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() for
|
sl@0
|
223 |
lower resolution image.
|
sl@0
|
224 |
|
sl@0
|
225 |
@leave May leave with any error code.
|
sl@0
|
226 |
|
sl@0
|
227 |
@note Direct saving to file will continue even if the client application gets closed for any reasons.
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::
|
sl@0
|
230 |
TDirectSavingType& aDirectSavingType) const
|
sl@0
|
231 |
{
|
sl@0
|
232 |
iImpl->GetDirectSavingTypeL(aDirectSavingType);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
/**
|
sl@0
|
236 |
Instructs the ECam implementation to use the desired type of direct saving option as specifed by its state.
|
sl@0
|
237 |
|
sl@0
|
238 |
Whether or not the direct saving option is used, client will receive the MCaptureImageObserver::ImageCaptureComplete()
|
sl@0
|
239 |
callback to mark the completion of the image capture operation.
|
sl@0
|
240 |
|
sl@0
|
241 |
@param aDirectSavingType
|
sl@0
|
242 |
The desired type of the direct saving.
|
sl@0
|
243 |
|
sl@0
|
244 |
If EDirectSavingNotUsed, direct saving will not be used. Images will be received in buffer MCameraImageBuffer
|
sl@0
|
245 |
through callback MCaptureImageObserver::ImageBufferReady().
|
sl@0
|
246 |
|
sl@0
|
247 |
If EDirectSavingHighResolutionFileOnly, direct saving to file option will be used. But no cut down version of
|
sl@0
|
248 |
the image will be saved to file. Callback to be used is MCaptureImageObserver::ImageDirectSavingCompleted().
|
sl@0
|
249 |
|
sl@0
|
250 |
If EDirectSavingWithLowerResolutionFile, apart from direct saving to file option for the actual image, a cut down
|
sl@0
|
251 |
version of the image will be saved to another specified file. Callbacks to be used are MCaptureImageObserver::
|
sl@0
|
252 |
ImageDirectSavingCompleted() for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() for
|
sl@0
|
253 |
lower resolution image.
|
sl@0
|
254 |
|
sl@0
|
255 |
@leave May leave with any error code.
|
sl@0
|
256 |
|
sl@0
|
257 |
@note Clients need to provide the filename before capturing still images under direct saving option. Callback
|
sl@0
|
258 |
MCaptureImageObserver::ImageDirectSavingCompleted() may provide error KErrNotReady if filenames are not
|
sl@0
|
259 |
provided before images are captured for direct saving. Similarly, if cut down version of image is also to be saved
|
sl@0
|
260 |
to file, MCaptureImageObserver::CutDownImageDirectSavingCompleted() may provide error KErrNotReady if filenames are
|
sl@0
|
261 |
not provided before hand.
|
sl@0
|
262 |
|
sl@0
|
263 |
@note Direct saving to file will continue even if the client application gets closed for any reasons.
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::SetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::
|
sl@0
|
266 |
TDirectSavingType aDirectSavingType)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
iImpl->SetDirectSavingTypeL(aDirectSavingType);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
/**
|
sl@0
|
272 |
Retrieves whether the camera device is capable of providing capture event notification to the client. Client may take
|
sl@0
|
273 |
the responsibility of playing the capture sound after receiving the notification.
|
sl@0
|
274 |
|
sl@0
|
275 |
@param aSupportedDriveModes
|
sl@0
|
276 |
A reference to bit-field of TUint which indicates the drive modes in which the capture event notification is
|
sl@0
|
277 |
supported. If aSupportedDriveModes =0, capture event notification is not supported.
|
sl@0
|
278 |
|
sl@0
|
279 |
@note If capture event notification is supported, ECam implementation will use KUidECamEventImageCaptureEvent to notify
|
sl@0
|
280 |
clients that the image has been exposed to the camera sensor. Clients may play capture sound if they desire to do so.
|
sl@0
|
281 |
|
sl@0
|
282 |
@leave May leave with any error code.
|
sl@0
|
283 |
|
sl@0
|
284 |
@see CCamera::CCameraAdvancedSettings::TDriveMode
|
sl@0
|
285 |
*/
|
sl@0
|
286 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetCaptureEventSupportInfoL(TUint& aSupportedDriveModes) const
|
sl@0
|
287 |
{
|
sl@0
|
288 |
iImpl->GetCaptureEventSupportInfoL(aSupportedDriveModes);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
/**
|
sl@0
|
292 |
Retrieves the supported image formats for a given resolution.
|
sl@0
|
293 |
|
sl@0
|
294 |
@param aImageFormatsSupported
|
sl@0
|
295 |
A bit field which retrieves the supported image formats for a given resolution.
|
sl@0
|
296 |
Formats have been defined as CCamera::TFormat
|
sl@0
|
297 |
|
sl@0
|
298 |
@param aSize
|
sl@0
|
299 |
The resolution (or size) for which the total number of supported image formats have to be retrieved.
|
sl@0
|
300 |
|
sl@0
|
301 |
@leave May leave with any error code.
|
sl@0
|
302 |
*/
|
sl@0
|
303 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetImageFormatsSupportedL(TUint& aImageFormatsSupported, const TSize& aSize) const
|
sl@0
|
304 |
{
|
sl@0
|
305 |
iImpl->GetImageFormatsSupportedL(aImageFormatsSupported, aSize);
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
/**
|
sl@0
|
309 |
Retrieves the supported pixel aspect ratio for a given resolution in case of still image.
|
sl@0
|
310 |
|
sl@0
|
311 |
@param aPixelAspectsSupported
|
sl@0
|
312 |
A bit field which retrieves the supported pixel aspect ratio for a given resolution.
|
sl@0
|
313 |
Pixel aspect ratio have been defined as CCamera::CCameraAdvancedSettings::TPixelAspectRatio
|
sl@0
|
314 |
|
sl@0
|
315 |
@param aImageFormat
|
sl@0
|
316 |
The image format for which the supported pixel aspect ratio have to be retrieved.
|
sl@0
|
317 |
|
sl@0
|
318 |
@param aSize
|
sl@0
|
319 |
The resolution (or size) for which the supported pixel aspect ratio have to be retrieved.
|
sl@0
|
320 |
|
sl@0
|
321 |
@leave May leave with any error code.
|
sl@0
|
322 |
*/
|
sl@0
|
323 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aImageFormat, const TSize& aSize) const
|
sl@0
|
324 |
{
|
sl@0
|
325 |
iImpl->GetPixelAspectsSupportedL(aPixelAspectsSupported, aImageFormat, aSize);
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
/**
|
sl@0
|
329 |
Performs setup and allocation of memory for image capture operation. Implementation creates a new CCameraImageCapture*
|
sl@0
|
330 |
object which reflects the prepare image parameters passed by the client. The callback MPreImageCaptureControlObserver::
|
sl@0
|
331 |
PrepareImageComplete() passes the ownership of the CCameraImageCapture* object to the client.
|
sl@0
|
332 |
|
sl@0
|
333 |
This needs to be called every time client wishes to change prepare image parameters or if the client wishes to create
|
sl@0
|
334 |
a new CCameraImageCapture* object.
|
sl@0
|
335 |
|
sl@0
|
336 |
@param aPrepareImageParameters
|
sl@0
|
337 |
The desired image parameters to be used for capturing still images using the CCameraImageCapture instance
|
sl@0
|
338 |
which would be passed by the implementation.
|
sl@0
|
339 |
|
sl@0
|
340 |
@param aCaptureImageObserver
|
sl@0
|
341 |
The Capture image observer which is needed by the implementation in order to pass it to the CCameraImageCapture
|
sl@0
|
342 |
while creating it.
|
sl@0
|
343 |
|
sl@0
|
344 |
@note Next PrepareImageCapture can be called only after receiving the notification KUidECamEventReadyForNextPrepare.
|
sl@0
|
345 |
|
sl@0
|
346 |
@note If drive mode is EDriveModeTimeNudgeCapture, when the client initiates image capture the total amount of images
|
sl@0
|
347 |
requested by the client (specified in TDriveModeDependentAttributes) will be returned to the client
|
sl@0
|
348 |
(via MCaptureImageObserver::ImageBufferReady()) or saved to file. No other instance of CCameraImageCapture can be
|
sl@0
|
349 |
created whilst using this drive mode until the first instance is destroyed.
|
sl@0
|
350 |
|
sl@0
|
351 |
@see CCamera::PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex)
|
sl@0
|
352 |
*/
|
sl@0
|
353 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(const CCamera::CCameraPreImageCaptureControl::
|
sl@0
|
354 |
TPrepareImageParameters& aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
// MCameraPreImageCaptureControl concrete implementation will call CCameraImageCapture::CreateL(CCamera& aCamera,
|
sl@0
|
357 |
// MCaptureImageObserver& aCaptureImageObserver) method and pass the CCameraImageCapture* to the client through
|
sl@0
|
358 |
// the MPreImageCaptureControlObserver::PrepareImageComplete() callback.
|
sl@0
|
359 |
iImpl->PrepareImageCapture(aPrepareImageParameters, aCaptureImageObserver);
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
/**
|
sl@0
|
363 |
Informs whether or not the setting of maximum memory size when encoding to the current format is supported.
|
sl@0
|
364 |
|
sl@0
|
365 |
@param aIsImageMaxMemorySizeSettingSupported
|
sl@0
|
366 |
ETrue indicates that setting of maximum memory size is supported.
|
sl@0
|
367 |
EFalse indicates that setting of maximum memory size is not supported.
|
sl@0
|
368 |
|
sl@0
|
369 |
@leave May leave with any error code.
|
sl@0
|
370 |
*/
|
sl@0
|
371 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetImageMaxMemorySizeSettingSupportInfoL(TBool& aIsImageMaxMemorySizeSettingSupported) const
|
sl@0
|
372 |
{
|
sl@0
|
373 |
iImpl->GetImageMaxMemorySizeSettingSupportInfoL(aIsImageMaxMemorySizeSettingSupported);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
/**
|
sl@0
|
377 |
Get the maximum memory size in kilo bytes when encoding to the current format.
|
sl@0
|
378 |
|
sl@0
|
379 |
@param aMemorySize
|
sl@0
|
380 |
Retrieves the maximum memory size in kilo bytes.
|
sl@0
|
381 |
|
sl@0
|
382 |
@note In case of JPEG, the maximum memory size will take preference over JPEG quality if the maximum memory size is
|
sl@0
|
383 |
not sufficient to achieve the desired quality. Refer CCamera::JpegQuality()
|
sl@0
|
384 |
|
sl@0
|
385 |
@leave May leave with any error code.
|
sl@0
|
386 |
*/
|
sl@0
|
387 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetImageMaxMemorySizeL(TUint& aMemorySize) const
|
sl@0
|
388 |
{
|
sl@0
|
389 |
iImpl->GetImageMaxMemorySizeL(aMemorySize);
|
sl@0
|
390 |
}
|
sl@0
|
391 |
|
sl@0
|
392 |
/**
|
sl@0
|
393 |
Retrieves the supported processing options.
|
sl@0
|
394 |
|
sl@0
|
395 |
@param aEcamProcessingOptionsSupported
|
sl@0
|
396 |
Bitfield containing the available processing options.
|
sl@0
|
397 |
|
sl@0
|
398 |
@leave May leave with any error code.
|
sl@0
|
399 |
*/
|
sl@0
|
400 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::GetSupportedProcessingOptionsL(TUint& aECamProcessingOptionsSupported) const
|
sl@0
|
401 |
{
|
sl@0
|
402 |
iImpl->GetSupportedProcessingOptionsL(aECamProcessingOptionsSupported);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
|
sl@0
|
405 |
/**
|
sl@0
|
406 |
Constructor for the TPrepareImageParameters class.
|
sl@0
|
407 |
Sets the size and version of this class.
|
sl@0
|
408 |
*/
|
sl@0
|
409 |
EXPORT_C CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::TPrepareImageParameters()
|
sl@0
|
410 |
{
|
sl@0
|
411 |
iSize = sizeof(CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters);
|
sl@0
|
412 |
iVersion = KECamPrepareImageParametersCurrentVersion;
|
sl@0
|
413 |
|
sl@0
|
414 |
iImageMaxMemorySize = KECamNoSpecificMaxMemorySize;
|
sl@0
|
415 |
iImageProcessingOptions = 0;
|
sl@0
|
416 |
}
|
sl@0
|
417 |
|
sl@0
|
418 |
/**
|
sl@0
|
419 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
420 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
421 |
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
|
422 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
423 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
424 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
425 |
|
sl@0
|
426 |
@return The size of this class.
|
sl@0
|
427 |
|
sl@0
|
428 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
429 |
*/
|
sl@0
|
430 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::Size() const
|
sl@0
|
431 |
{
|
sl@0
|
432 |
return iSize;
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
/**
|
sl@0
|
436 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
437 |
members get used at a later stage.
|
sl@0
|
438 |
|
sl@0
|
439 |
@return The version of this class.
|
sl@0
|
440 |
|
sl@0
|
441 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
442 |
*/
|
sl@0
|
443 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::Version() const
|
sl@0
|
444 |
{
|
sl@0
|
445 |
return iVersion;
|
sl@0
|
446 |
}
|
sl@0
|
447 |
|
sl@0
|
448 |
/**
|
sl@0
|
449 |
Sets the image processing options to be used during image capture.
|
sl@0
|
450 |
|
sl@0
|
451 |
@param aImageProcessingOptions
|
sl@0
|
452 |
Bitfield of image processing options to be used during image capture.
|
sl@0
|
453 |
*/
|
sl@0
|
454 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::SetImageProcessingOptions(TUint aImageProcessingOptions)
|
sl@0
|
455 |
{
|
sl@0
|
456 |
iImageProcessingOptions = aImageProcessingOptions;
|
sl@0
|
457 |
}
|
sl@0
|
458 |
|
sl@0
|
459 |
/**
|
sl@0
|
460 |
Gets the current image processing options to be used during image capture.
|
sl@0
|
461 |
|
sl@0
|
462 |
@param aImageProcessingOptions
|
sl@0
|
463 |
Bitfield of current image processing options to be used during image capture.
|
sl@0
|
464 |
*/
|
sl@0
|
465 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::GetImageProcessingOptions(TUint& aImageProcessingOptions) const
|
sl@0
|
466 |
{
|
sl@0
|
467 |
aImageProcessingOptions = iImageProcessingOptions;
|
sl@0
|
468 |
}
|
sl@0
|
469 |
|
sl@0
|
470 |
/**
|
sl@0
|
471 |
Constructor for the TDriveModeDependentAttributes class.
|
sl@0
|
472 |
Sets the size and version of this class.
|
sl@0
|
473 |
*/
|
sl@0
|
474 |
EXPORT_C CCamera::CCameraPreImageCaptureControl::TDriveModeDependentAttributes::TDriveModeDependentAttributes()
|
sl@0
|
475 |
{
|
sl@0
|
476 |
iSize = sizeof(CCamera::CCameraPreImageCaptureControl::TDriveModeDependentAttributes);
|
sl@0
|
477 |
iVersion = KECamDriveModeDependentAttributesCurrentVersion;
|
sl@0
|
478 |
iParam1 = -1;
|
sl@0
|
479 |
iParam2 = -1;
|
sl@0
|
480 |
}
|
sl@0
|
481 |
|
sl@0
|
482 |
/**
|
sl@0
|
483 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
484 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
485 |
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
|
486 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
487 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
488 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
489 |
|
sl@0
|
490 |
@return The size of this class.
|
sl@0
|
491 |
|
sl@0
|
492 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
493 |
*/
|
sl@0
|
494 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TDriveModeDependentAttributes::Size() const
|
sl@0
|
495 |
{
|
sl@0
|
496 |
return iSize;
|
sl@0
|
497 |
}
|
sl@0
|
498 |
|
sl@0
|
499 |
/**
|
sl@0
|
500 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
501 |
members get used at a later stage.
|
sl@0
|
502 |
|
sl@0
|
503 |
@return The version of this class.
|
sl@0
|
504 |
|
sl@0
|
505 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
506 |
*/
|
sl@0
|
507 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TDriveModeDependentAttributes::Version() const
|
sl@0
|
508 |
{
|
sl@0
|
509 |
return iVersion;
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|
sl@0
|
512 |
/**
|
sl@0
|
513 |
Constructor for the TImageBufferInfo class.
|
sl@0
|
514 |
Sets the size and version of this class.
|
sl@0
|
515 |
*/
|
sl@0
|
516 |
EXPORT_C CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::TImageBufferInfo()
|
sl@0
|
517 |
{
|
sl@0
|
518 |
iSize = sizeof(CCamera::CCameraPreImageCaptureControl::TImageBufferInfo);
|
sl@0
|
519 |
iVersion = KECamImageBufferInfoCurrentVersion;
|
sl@0
|
520 |
}
|
sl@0
|
521 |
|
sl@0
|
522 |
/**
|
sl@0
|
523 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
524 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
525 |
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
|
526 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
527 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
528 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
529 |
|
sl@0
|
530 |
@return The size of this class.
|
sl@0
|
531 |
|
sl@0
|
532 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
533 |
*/
|
sl@0
|
534 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::Size() const
|
sl@0
|
535 |
{
|
sl@0
|
536 |
return iSize;
|
sl@0
|
537 |
}
|
sl@0
|
538 |
|
sl@0
|
539 |
/**
|
sl@0
|
540 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
541 |
members get used at a later stage.
|
sl@0
|
542 |
|
sl@0
|
543 |
@return The version of this class.
|
sl@0
|
544 |
|
sl@0
|
545 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
546 |
*/
|
sl@0
|
547 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::Version() const
|
sl@0
|
548 |
{
|
sl@0
|
549 |
return iVersion;
|
sl@0
|
550 |
}
|
sl@0
|
551 |
|
sl@0
|
552 |
/**
|
sl@0
|
553 |
Indicates whether the streamed image scheme or sub-frame scheme is being used.
|
sl@0
|
554 |
|
sl@0
|
555 |
@return Whether the sub-frame scheme is being used or not.
|
sl@0
|
556 |
|
sl@0
|
557 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iIsSubFrameUsed
|
sl@0
|
558 |
*/
|
sl@0
|
559 |
EXPORT_C TBool CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::IsSubFrameUsed() const
|
sl@0
|
560 |
{
|
sl@0
|
561 |
if (iIsSubFrameUsed)
|
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 streamed image scheme or sub-frame scheme is being used.
|
sl@0
|
573 |
|
sl@0
|
574 |
@param aIsSubFrameUsed
|
sl@0
|
575 |
ETrue implies sub-frame scheme is being used.
|
sl@0
|
576 |
EFalse implies sub-frame scheme is not being used.
|
sl@0
|
577 |
|
sl@0
|
578 |
@note The set method will be used by the ECAM implementation in order to provide necessary information to the
|
sl@0
|
579 |
clients when they receive the image buffers.
|
sl@0
|
580 |
|
sl@0
|
581 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iIsSubFrameUsed
|
sl@0
|
582 |
*/
|
sl@0
|
583 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::SetSubFrameState(TBool aIsSubFrameUsed)
|
sl@0
|
584 |
{
|
sl@0
|
585 |
iIsSubFrameUsed = static_cast<TUint>(aIsSubFrameUsed);
|
sl@0
|
586 |
}
|
sl@0
|
587 |
|
sl@0
|
588 |
/**
|
sl@0
|
589 |
Indicates whether the parallel buffering is being used by the implementation in order to speed up the streamed
|
sl@0
|
590 |
image operation, as a whole.
|
sl@0
|
591 |
|
sl@0
|
592 |
@return Whether the parallel buffer option is being used by the implementation under the sub-frame scheme.
|
sl@0
|
593 |
|
sl@0
|
594 |
@note Parallel buffering indicates that implementation is using more than one buffer to handle the various
|
sl@0
|
595 |
sub-frames; hence speeding up the operation.
|
sl@0
|
596 |
|
sl@0
|
597 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iIsParallelBufferUsed
|
sl@0
|
598 |
*/
|
sl@0
|
599 |
EXPORT_C TBool CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::IsParallelStreamedBufferUsed() const
|
sl@0
|
600 |
{
|
sl@0
|
601 |
if (iIsParallelBufferUsed)
|
sl@0
|
602 |
{
|
sl@0
|
603 |
return ETrue;
|
sl@0
|
604 |
}
|
sl@0
|
605 |
else
|
sl@0
|
606 |
{
|
sl@0
|
607 |
return EFalse;
|
sl@0
|
608 |
}
|
sl@0
|
609 |
}
|
sl@0
|
610 |
|
sl@0
|
611 |
/**
|
sl@0
|
612 |
Sets the state to inform whether the parallel buffering is being used by the implementation in order to speed up
|
sl@0
|
613 |
the streamed image operation, as a whole.
|
sl@0
|
614 |
|
sl@0
|
615 |
@param aParallelStreamedBufferUsed
|
sl@0
|
616 |
ETrue implies sub-frame scheme is being used.
|
sl@0
|
617 |
EFalse implies sub-frame scheme is not being used.
|
sl@0
|
618 |
|
sl@0
|
619 |
@note The set method will be used by the ECAM implementation in order to provide necessary information to the
|
sl@0
|
620 |
clients when they receive the image buffers.
|
sl@0
|
621 |
|
sl@0
|
622 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iIsParallelBufferUsed
|
sl@0
|
623 |
*/
|
sl@0
|
624 |
EXPORT_C void CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::SetParallelStreamedBufferState(TBool aParallelStreamedBufferUsed)
|
sl@0
|
625 |
{
|
sl@0
|
626 |
iIsParallelBufferUsed = static_cast<TUint>(aParallelStreamedBufferUsed);
|
sl@0
|
627 |
}
|
sl@0
|
628 |
|
sl@0
|
629 |
/**
|
sl@0
|
630 |
Sequence number of the sub-frame.
|
sl@0
|
631 |
|
sl@0
|
632 |
@return Sequence number of the sub-frame.
|
sl@0
|
633 |
|
sl@0
|
634 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iSubFrameSequenceNumber
|
sl@0
|
635 |
*/
|
sl@0
|
636 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::SubFrameSequenceNumber() const
|
sl@0
|
637 |
{
|
sl@0
|
638 |
return iSubFrameSequenceNumber;
|
sl@0
|
639 |
}
|
sl@0
|
640 |
|
sl@0
|
641 |
/**
|
sl@0
|
642 |
Sets the sequence number of the sub-frame.
|
sl@0
|
643 |
|
sl@0
|
644 |
@param aSubFrameSequenceNumber
|
sl@0
|
645 |
The sequence number of the sub-frame.
|
sl@0
|
646 |
|
sl@0
|
647 |
@return The error code
|
sl@0
|
648 |
|
sl@0
|
649 |
@note 9 bits used for sequence no. assuming that KECamMaxTotalSubFrames sub-frames would be used at max. Sequence number for sub-frames
|
sl@0
|
650 |
lies between 0 to KECamMaxTotalSubFrames-1 inclusive.
|
sl@0
|
651 |
|
sl@0
|
652 |
@note The set method will be used by the ECAM implementation in order to provide necessary information to the
|
sl@0
|
653 |
clients when they receive the image buffers.
|
sl@0
|
654 |
|
sl@0
|
655 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iSubFrameSequenceNumber
|
sl@0
|
656 |
*/
|
sl@0
|
657 |
EXPORT_C TInt CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::SetSubFrameSequenceNumber(TUint aSubFrameSequenceNumber)
|
sl@0
|
658 |
{
|
sl@0
|
659 |
if (aSubFrameSequenceNumber > (KECamMaxTotalSubFrames-1) )
|
sl@0
|
660 |
{
|
sl@0
|
661 |
return KErrOverflow;
|
sl@0
|
662 |
}
|
sl@0
|
663 |
else
|
sl@0
|
664 |
{
|
sl@0
|
665 |
iSubFrameSequenceNumber = aSubFrameSequenceNumber;
|
sl@0
|
666 |
return KErrNone;
|
sl@0
|
667 |
}
|
sl@0
|
668 |
}
|
sl@0
|
669 |
|
sl@0
|
670 |
/**
|
sl@0
|
671 |
Total number of sub-frames needed in order to properly reconstruct the actual image.
|
sl@0
|
672 |
|
sl@0
|
673 |
@return Total number of sub-frames which can reconstruct the actual image.
|
sl@0
|
674 |
|
sl@0
|
675 |
@note It does not give the number of outstanding sub-frames needed to reconstruct the image.
|
sl@0
|
676 |
This value will be same for every sub-frames needed to re-construct the actual image.
|
sl@0
|
677 |
Maximum no. of total sub-frames is KECamMaxTotalSubFrames.
|
sl@0
|
678 |
|
sl@0
|
679 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iTotalSubFrames
|
sl@0
|
680 |
*/
|
sl@0
|
681 |
EXPORT_C TUint CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::TotalSubFrames() const
|
sl@0
|
682 |
{
|
sl@0
|
683 |
return iTotalSubFrames;
|
sl@0
|
684 |
}
|
sl@0
|
685 |
|
sl@0
|
686 |
/**
|
sl@0
|
687 |
Sets the total number of sub-frames needed in order to properly reconstruct the actual image.
|
sl@0
|
688 |
|
sl@0
|
689 |
@param aTotalSubFrames
|
sl@0
|
690 |
Total number of sub-frames which can reconstruct the actual image.
|
sl@0
|
691 |
|
sl@0
|
692 |
@return error code
|
sl@0
|
693 |
|
sl@0
|
694 |
@note It does not give the number of outstanding sub-frames needed to reconstruct the image.
|
sl@0
|
695 |
This value will be same for every sub-frames needed to re-construct the actual image.
|
sl@0
|
696 |
Maximum no. of total sub-frames is KECamMaxTotalSubFrames.
|
sl@0
|
697 |
|
sl@0
|
698 |
@note The set method will be used by the ECAM implementation in order to provide necessary information to the
|
sl@0
|
699 |
clients when they receive the image buffers.
|
sl@0
|
700 |
|
sl@0
|
701 |
@see CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::iTotalSubFrames
|
sl@0
|
702 |
*/
|
sl@0
|
703 |
EXPORT_C TInt CCamera::CCameraPreImageCaptureControl::TImageBufferInfo::SetTotalSubFrames(TUint aTotalSubFrames)
|
sl@0
|
704 |
{
|
sl@0
|
705 |
if (aTotalSubFrames > KECamMaxTotalSubFrames)
|
sl@0
|
706 |
{
|
sl@0
|
707 |
return KErrOverflow;
|
sl@0
|
708 |
}
|
sl@0
|
709 |
else
|
sl@0
|
710 |
{
|
sl@0
|
711 |
iTotalSubFrames = aTotalSubFrames;
|
sl@0
|
712 |
return KErrNone;
|
sl@0
|
713 |
}
|
sl@0
|
714 |
}
|
sl@0
|
715 |
|
sl@0
|
716 |
/**
|
sl@0
|
717 |
Retrieves the maximum number of spots present from where the camera hardware collects the focussing information.
|
sl@0
|
718 |
|
sl@0
|
719 |
@param aFocusMode
|
sl@0
|
720 |
The focus mode for which the number of spots have to be retrieved.
|
sl@0
|
721 |
|
sl@0
|
722 |
@param aMaximumSpots
|
sl@0
|
723 |
Retrieves the maximum number of spots for the given focus mode.
|
sl@0
|
724 |
|
sl@0
|
725 |
@leave May leave with any error code.
|
sl@0
|
726 |
|
sl@0
|
727 |
@note The maximum number of spots is supposed to be less than or equal to KMaxNumberOfFocusSpots.
|
sl@0
|
728 |
|
sl@0
|
729 |
@see CCameraViewFinder::GetSpotsPositionL
|
sl@0
|
730 |
*/
|
sl@0
|
731 |
void CCamera::CCameraPreImageCaptureControl::GetMaximumSpotsL(CCamera::CCameraAdvancedSettings::TFocusMode /*aFocusMode*/, TInt& /*aMaximumSpots*/) const
|
sl@0
|
732 |
{
|
sl@0
|
733 |
User::Leave(KErrNotSupported);
|
sl@0
|
734 |
}
|
sl@0
|
735 |
|
sl@0
|
736 |
/**
|
sl@0
|
737 |
Retrieves the supported spot combinations for the given focus mode.
|
sl@0
|
738 |
|
sl@0
|
739 |
@param aFocusMode
|
sl@0
|
740 |
The focus mode for which the supported spot combinations have to be retrieved.
|
sl@0
|
741 |
|
sl@0
|
742 |
@param aPossibleSpotCombinations
|
sl@0
|
743 |
Each member of this array is of type TUint and is a bit field where every bit represents presence or absence of
|
sl@0
|
744 |
a particular spot.
|
sl@0
|
745 |
|
sl@0
|
746 |
@leave May leave with any error code.
|
sl@0
|
747 |
|
sl@0
|
748 |
@note Since maximum number of spots can go up to KMaxNumberOfFocusSpots, it can be easily known which spots are present
|
sl@0
|
749 |
in a particular array entry (every array entry is a bit field and every bit represents presence or absence of a
|
sl@0
|
750 |
particular spot). For example,if KMaxNumberOfFocusSpots is 32 and if a particular array entry is 0x07001000. This
|
sl@0
|
751 |
means that spot number 13,25,26 and 27 are being represented.
|
sl@0
|
752 |
|
sl@0
|
753 |
@see CCameraViewFinder::GetSpotsPositionL
|
sl@0
|
754 |
*/
|
sl@0
|
755 |
void CCamera::CCameraPreImageCaptureControl::GetSupportedSpotsCombinationL(CCamera::CCameraAdvancedSettings::TFocusMode /*aFocusMode*/, RArray<TUint>& /*aPossibleSpotCombinations*/) const
|
sl@0
|
756 |
{
|
sl@0
|
757 |
User::Leave(KErrNotSupported);
|
sl@0
|
758 |
}
|
sl@0
|
759 |
|
sl@0
|
760 |
/**
|
sl@0
|
761 |
Retrieves the focussing spot combination which is used to provide focussing feedback in a particular focussing mode.
|
sl@0
|
762 |
|
sl@0
|
763 |
@param aFocusMode
|
sl@0
|
764 |
The focussing mode in which the spot combination has to be used for retrieving feedback.
|
sl@0
|
765 |
|
sl@0
|
766 |
@param aSpotsCombination
|
sl@0
|
767 |
The retrieved spot combination. It is a bitfield marking the presence or absence of spots.
|
sl@0
|
768 |
This is dependent on the focusssing mode.
|
sl@0
|
769 |
|
sl@0
|
770 |
@leave May leave with any error code.
|
sl@0
|
771 |
|
sl@0
|
772 |
@see CCameraViewFinder::GetSpotsPositionL
|
sl@0
|
773 |
*/
|
sl@0
|
774 |
void CCamera::CCameraPreImageCaptureControl::GetSpotsCombinationL(CCamera::CCameraAdvancedSettings::TFocusMode /*aFocusMode*/, TUint& /*aSpotsCombination*/) const
|
sl@0
|
775 |
{
|
sl@0
|
776 |
User::Leave(KErrNotSupported);
|
sl@0
|
777 |
}
|
sl@0
|
778 |
|
sl@0
|
779 |
/**
|
sl@0
|
780 |
Sets a particular spot combination which can be used to provide focussing feedback in a particular focussing mode.
|
sl@0
|
781 |
|
sl@0
|
782 |
@param aFocusMode
|
sl@0
|
783 |
The focussing mode in which the spot combination has to be used for retrieving feedback.
|
sl@0
|
784 |
|
sl@0
|
785 |
@param aSpotsCombination
|
sl@0
|
786 |
The spot combination to be set. It is a bitfield marking the presence or absence of spots.
|
sl@0
|
787 |
|
sl@0
|
788 |
@note Event KUidECamEvent2ImageCaptureControlSpotCombination is used to notify the requesting client about setting of a particular
|
sl@0
|
789 |
spot combination.
|
sl@0
|
790 |
|
sl@0
|
791 |
@note Event KUidECamEvent2ImageCaptureControlFocussingInformation is used to provide the focussing feedback, whenever applicable.
|
sl@0
|
792 |
|
sl@0
|
793 |
@see CCameraViewFinder::GetSpotsPositionL
|
sl@0
|
794 |
*/
|
sl@0
|
795 |
void CCamera::CCameraPreImageCaptureControl::SetSpotsCombination(CCamera::CCameraAdvancedSettings::TFocusMode /*aFocusMode*/, TUint /*aSpotsCombination*/)
|
sl@0
|
796 |
{
|
sl@0
|
797 |
return;
|
sl@0
|
798 |
}
|
sl@0
|
799 |
|
sl@0
|
800 |
/**
|
sl@0
|
801 |
Retrieves whether the streamed image is supported or not. Sub-frames are used if streamed image output is used.
|
sl@0
|
802 |
|
sl@0
|
803 |
@param aIsStreamedImageSupported
|
sl@0
|
804 |
ETrue indicates that streamed image is supported.
|
sl@0
|
805 |
EFalse indicates that streamed image is not supported.
|
sl@0
|
806 |
|
sl@0
|
807 |
@leave May leave with any error code.
|
sl@0
|
808 |
*/
|
sl@0
|
809 |
void CCamera::CCameraPreImageCaptureControl::GetStreamedImageSupportInfoL(TBool& /*aIsStreamedImageSupported*/) const
|
sl@0
|
810 |
{
|
sl@0
|
811 |
User::Leave(KErrNotSupported);
|
sl@0
|
812 |
}
|
sl@0
|
813 |
|
sl@0
|
814 |
/**
|
sl@0
|
815 |
Enables the streamed image output and hence the use of sub-frames to collect image data. MCameraImageBuffer will be
|
sl@0
|
816 |
used in place of MCameraBuffer in order to provide sub-frames details. Every MCaptureImageObserver::ImageBufferReady()
|
sl@0
|
817 |
will retrieve only one sub-frame. Full image will be reconstructed after receiving all the sub-frames.
|
sl@0
|
818 |
|
sl@0
|
819 |
@leave May leave with any error code.
|
sl@0
|
820 |
|
sl@0
|
821 |
@note The corresponding image capture call is considered to be complete only when every sub-frame has been received.
|
sl@0
|
822 |
*/
|
sl@0
|
823 |
void CCamera::CCameraPreImageCaptureControl::EnableSubFramesL()
|
sl@0
|
824 |
{
|
sl@0
|
825 |
User::Leave(KErrNotSupported);
|
sl@0
|
826 |
}
|
sl@0
|
827 |
|
sl@0
|
828 |
/**
|
sl@0
|
829 |
Disable the streamed image output and hence the use of sub-frames to collect image data. Every
|
sl@0
|
830 |
MCaptureImageObserver::ImageBufferReady() will retrieve one full still image.
|
sl@0
|
831 |
|
sl@0
|
832 |
@leave May leave with any error code.
|
sl@0
|
833 |
*/
|
sl@0
|
834 |
void CCamera::CCameraPreImageCaptureControl::DisableSubFramesL()
|
sl@0
|
835 |
{
|
sl@0
|
836 |
User::Leave(KErrNotSupported);
|
sl@0
|
837 |
}
|
sl@0
|
838 |
|
sl@0
|
839 |
/**
|
sl@0
|
840 |
Retrieves the current state about streamed image option or sub-frame usage.
|
sl@0
|
841 |
|
sl@0
|
842 |
@param iIsSubFrameEnabled
|
sl@0
|
843 |
ETrue indicates that streamed image option is currently being used.
|
sl@0
|
844 |
EFalse indicates that streamed image option is currently not being used.
|
sl@0
|
845 |
|
sl@0
|
846 |
@leave May leave with any error code.
|
sl@0
|
847 |
*/
|
sl@0
|
848 |
void CCamera::CCameraPreImageCaptureControl::GetSubFramesStateL(TBool& /*aIsSubFrameEnabled*/) const
|
sl@0
|
849 |
{
|
sl@0
|
850 |
User::Leave(KErrNotSupported);
|
sl@0
|
851 |
}
|
sl@0
|
852 |
|
sl@0
|
853 |
/**
|
sl@0
|
854 |
Retrieves the list of transformations (image processing) available in case streamed image is used.
|
sl@0
|
855 |
|
sl@0
|
856 |
@param aStreamedImageSupportedTransformations
|
sl@0
|
857 |
Retrieves an array of uids which represents those image processing attributes which are supported for streamed
|
sl@0
|
858 |
image.
|
sl@0
|
859 |
|
sl@0
|
860 |
@leave May leave with any error code.
|
sl@0
|
861 |
*/
|
sl@0
|
862 |
void CCamera::CCameraPreImageCaptureControl::GetStreamedImageSupportedTransformationsL(RArray<TUid>& /*aStreamedImageSupportedTransformations*/) const
|
sl@0
|
863 |
{
|
sl@0
|
864 |
User::Leave(KErrNotSupported);
|
sl@0
|
865 |
}
|
sl@0
|
866 |
|
sl@0
|
867 |
/**
|
sl@0
|
868 |
Retrieves the panorama mode support.
|
sl@0
|
869 |
|
sl@0
|
870 |
@param aIsPanoModeSupported
|
sl@0
|
871 |
Informs whether the pano mode is supported or not.
|
sl@0
|
872 |
|
sl@0
|
873 |
@param aSupportedStitchingOption
|
sl@0
|
874 |
Retrieves the supported image stitching option available with the ECAM implementation for the images captured
|
sl@0
|
875 |
under panorama mode. It is a TInt represepesting bitfield for supported TStitchingOption
|
sl@0
|
876 |
If pano mode is not supported, this has to be 0.
|
sl@0
|
877 |
|
sl@0
|
878 |
@leave May leave with any error code.
|
sl@0
|
879 |
*/
|
sl@0
|
880 |
void CCamera::CCameraPreImageCaptureControl::GetPanoModeSupportInfoL(TBool& /*aIsPanoModeSupported*/, TInt& /*aSupportedStitchingOption*/) const
|
sl@0
|
881 |
{
|
sl@0
|
882 |
User::Leave(KErrNotSupported);
|
sl@0
|
883 |
}
|
sl@0
|
884 |
|
sl@0
|
885 |
/**
|
sl@0
|
886 |
Starts panning the viewfinder. Any image captured under pano mode gets overlaid on top of viewfinder and in a
|
sl@0
|
887 |
particular direction.
|
sl@0
|
888 |
|
sl@0
|
889 |
This method starts panorama mode for every viewfinder screen.
|
sl@0
|
890 |
|
sl@0
|
891 |
@param aStitchingOption
|
sl@0
|
892 |
Enum value EStitchingOptionEnable instructs implementation to perform stitching of images captured under pano mode.
|
sl@0
|
893 |
So only one completion feedback will be given to the client regarding image being ready.(either through
|
sl@0
|
894 |
MCaptureImageObserver::ImageBufferReady() or through MCaptureImageObserver::ImageDirectSavingCompleted())
|
sl@0
|
895 |
|
sl@0
|
896 |
Enum value EStitchingOptionDisable instructs implemenation to provide the images unstitched.
|
sl@0
|
897 |
|
sl@0
|
898 |
Enum value EStitchingOptionNone should be passed only when stitching option is not supported by the
|
sl@0
|
899 |
implementation.
|
sl@0
|
900 |
|
sl@0
|
901 |
@note Event KUidECamEventImageCaptureControlStartPanoMode is used to notify clients about the start of panorama mode.
|
sl@0
|
902 |
|
sl@0
|
903 |
@note Calling the StartPanoMode twice and without stopping it will result in an error.
|
sl@0
|
904 |
*/
|
sl@0
|
905 |
void CCamera::CCameraPreImageCaptureControl::StartPanoMode(CCamera::CCameraPreImageCaptureControl::TStitchingOption /*aStitchingOption*/)
|
sl@0
|
906 |
{
|
sl@0
|
907 |
return;
|
sl@0
|
908 |
}
|
sl@0
|
909 |
|
sl@0
|
910 |
/**
|
sl@0
|
911 |
Starts panning the viewfinder. Any image captured under pano mode gets overlaid on top of viewfinder and in a
|
sl@0
|
912 |
particular direction.
|
sl@0
|
913 |
|
sl@0
|
914 |
This method starts panorama mode only on few specified viewfinder screens.
|
sl@0
|
915 |
|
sl@0
|
916 |
@param aStitchingOption
|
sl@0
|
917 |
Enum value EStitchingOptionEnable instructs implementation to perform stitching of images captured under pano mode. So
|
sl@0
|
918 |
only one completion feedback will be given to the client regarding image being ready.(either through
|
sl@0
|
919 |
MCaptureImageObserver::ImageBufferReady() or through MCaptureImageObserver::ImageDirectSavingCompleted())
|
sl@0
|
920 |
|
sl@0
|
921 |
Enum value EStitchingOptionDisable instructs implemenation to provide the images unstitched.
|
sl@0
|
922 |
|
sl@0
|
923 |
Enum value EStitchingOptionNone should be passed only when stitching option is not supported by the
|
sl@0
|
924 |
implementation.
|
sl@0
|
925 |
|
sl@0
|
926 |
@param aVFHandles
|
sl@0
|
927 |
The array of viewfinder handles on which the panorama will run. Every member of this array is a valid viewfinder
|
sl@0
|
928 |
handle.
|
sl@0
|
929 |
|
sl@0
|
930 |
@note Event KUidECamEventImageCaptureControlStartPanoMode is used to notify clients about the start of panorama mode.
|
sl@0
|
931 |
|
sl@0
|
932 |
@note Calling the StartPanoMode twice and without stopping it will result in an error.
|
sl@0
|
933 |
*/
|
sl@0
|
934 |
void CCamera::CCameraPreImageCaptureControl::StartPanoMode(CCamera::CCameraPreImageCaptureControl::TStitchingOption /*aStitchingOption*/, const RArray<TInt>& /*aVFHandles*/)
|
sl@0
|
935 |
{
|
sl@0
|
936 |
return;
|
sl@0
|
937 |
}
|
sl@0
|
938 |
|
sl@0
|
939 |
/**
|
sl@0
|
940 |
Retrieves the direction of panning.
|
sl@0
|
941 |
|
sl@0
|
942 |
@param aPanoDirection
|
sl@0
|
943 |
The currently used panning direction.
|
sl@0
|
944 |
|
sl@0
|
945 |
@leave May leave with any error code.
|
sl@0
|
946 |
|
sl@0
|
947 |
@note When the image is captured, the cropped version of the captured image covering a full rectangle is overlaid at
|
sl@0
|
948 |
the left hand side of the display screen (if TPanoDirection is EPanoRight) and viewfinder runs below that.
|
sl@0
|
949 |
|
sl@0
|
950 |
@note If the method leaves, the reference to CCamera::CCameraPreImageCaptureControl::TPanoDirection i.e. aPanoDirection is
|
sl@0
|
951 |
not guaranteed to be valid.
|
sl@0
|
952 |
*/
|
sl@0
|
953 |
void CCamera::CCameraPreImageCaptureControl::GetPanoDirectionL(CCamera::CCameraPreImageCaptureControl::TPanoDirection& /*aPanoDirection*/) const
|
sl@0
|
954 |
{
|
sl@0
|
955 |
User::Leave(KErrNotSupported);
|
sl@0
|
956 |
}
|
sl@0
|
957 |
|
sl@0
|
958 |
/**
|
sl@0
|
959 |
Sets the direction of panning
|
sl@0
|
960 |
|
sl@0
|
961 |
@param aPanoDirection
|
sl@0
|
962 |
The desired panning direction.
|
sl@0
|
963 |
|
sl@0
|
964 |
@note Event KUidECamEventImageCaptureControlPanoDirection is used to notify the requesting client about setting of the
|
sl@0
|
965 |
panning direction.
|
sl@0
|
966 |
*/
|
sl@0
|
967 |
void CCamera::CCameraPreImageCaptureControl::SetPanoDirection(CCamera::CCameraPreImageCaptureControl::TPanoDirection /*aPanoDirection*/)
|
sl@0
|
968 |
{
|
sl@0
|
969 |
return;
|
sl@0
|
970 |
}
|
sl@0
|
971 |
|
sl@0
|
972 |
/**
|
sl@0
|
973 |
Stop the panorama mode.
|
sl@0
|
974 |
|
sl@0
|
975 |
@param aStitchedImageRetrieval
|
sl@0
|
976 |
Enum value EStitchedImageRetrieve indicates that images has to be stitched if initially image stitching was
|
sl@0
|
977 |
enabled.
|
sl@0
|
978 |
|
sl@0
|
979 |
Enum value EStitchedImageDiscard indicates that images should not be stitched (discarded) if initially image
|
sl@0
|
980 |
stitching was enabled. No image ready notification returned to the client in this case. This may happen when
|
sl@0
|
981 |
client is not happy with the panned images captured so far.
|
sl@0
|
982 |
|
sl@0
|
983 |
@leave May leave with any error code.
|
sl@0
|
984 |
|
sl@0
|
985 |
@note If image stitching option was not enabled while starting the pano mode, the 'aStitchedImageRetrieval' parameter is
|
sl@0
|
986 |
ignored by the implementation.
|
sl@0
|
987 |
*/
|
sl@0
|
988 |
void CCamera::CCameraPreImageCaptureControl::StopPanoModeL(CCamera::CCameraPreImageCaptureControl::TStitchedImageRetrieval /*aStitchedImageRetrieval*/)
|
sl@0
|
989 |
{
|
sl@0
|
990 |
User::Leave(KErrNotSupported);
|
sl@0
|
991 |
}
|
sl@0
|
992 |
|
sl@0
|
993 |
/**
|
sl@0
|
994 |
Retrieves the supported color space.
|
sl@0
|
995 |
|
sl@0
|
996 |
@param aSupportedColorSpace
|
sl@0
|
997 |
A bitfield representing the supported TColorSpace
|
sl@0
|
998 |
|
sl@0
|
999 |
@leave May leave with any error code.
|
sl@0
|
1000 |
*/
|
sl@0
|
1001 |
void CCamera::CCameraPreImageCaptureControl::GetSupportedColorSpaceL(TUint& /*aSupportedColorSpace*/) const
|
sl@0
|
1002 |
{
|
sl@0
|
1003 |
User::Leave(KErrNotSupported);
|
sl@0
|
1004 |
}
|
sl@0
|
1005 |
|
sl@0
|
1006 |
/**
|
sl@0
|
1007 |
Get the current color space being used.
|
sl@0
|
1008 |
|
sl@0
|
1009 |
@param aColorSpace
|
sl@0
|
1010 |
Currently used color space.
|
sl@0
|
1011 |
|
sl@0
|
1012 |
@leave May leave with any error code.
|
sl@0
|
1013 |
*/
|
sl@0
|
1014 |
void CCamera::CCameraPreImageCaptureControl::GetColorSpaceL(CCamera::CCameraPreImageCaptureControl::TColorSpace& /*aColorSpace*/) const
|
sl@0
|
1015 |
{
|
sl@0
|
1016 |
User::Leave(KErrNotSupported);
|
sl@0
|
1017 |
}
|
sl@0
|
1018 |
|
sl@0
|
1019 |
/**
|
sl@0
|
1020 |
Set a particular color space.
|
sl@0
|
1021 |
|
sl@0
|
1022 |
@param aColorSpace
|
sl@0
|
1023 |
The color space value to be set.
|
sl@0
|
1024 |
|
sl@0
|
1025 |
@note Event KUidECamEventImageCaptureControlColorSpace is used to notify clients about setting the color space.
|
sl@0
|
1026 |
*/
|
sl@0
|
1027 |
void CCamera::CCameraPreImageCaptureControl::SetColorSpace(CCamera::CCameraPreImageCaptureControl::TColorSpace /*aColorSpace*/)
|
sl@0
|
1028 |
{
|
sl@0
|
1029 |
return;
|
sl@0
|
1030 |
}
|
sl@0
|
1031 |
|
sl@0
|
1032 |
/**
|
sl@0
|
1033 |
Synchronous marker method in order to provide selective settings for embedded still captures only (not to video capture)
|
sl@0
|
1034 |
|
sl@0
|
1035 |
@note Any feature setting issued after calling this method gets saved on the implementation side and the actual
|
sl@0
|
1036 |
setting performed before still images (embedded still captures) are taken.
|
sl@0
|
1037 |
|
sl@0
|
1038 |
@note Any getter method issued after calling this method gives feature value which would be used for still images
|
sl@0
|
1039 |
(embedded still captures). For example, if WhiteBalance set for 'Auto' for EmbeddedStillCapture but 'Cloudy' otherwise, then
|
sl@0
|
1040 |
under the marker method, white balance will show 'Cloudy'.
|
sl@0
|
1041 |
|
sl@0
|
1042 |
@note Event KUidECamEventFailedEmbeddedStillCaptureSetting notified to the client if in case any embedded still capture
|
sl@0
|
1043 |
setting gets failed during the time they are actually set. After this notification, client can issue
|
sl@0
|
1044 |
GetFailedEmbeddedStillCaptureSettingsL to retrieve the list of failed settings.
|
sl@0
|
1045 |
|
sl@0
|
1046 |
@leave May leave with any error code.
|
sl@0
|
1047 |
*/
|
sl@0
|
1048 |
void CCamera::CCameraPreImageCaptureControl::StartEmbeddedStillCaptureSettingsL()
|
sl@0
|
1049 |
{
|
sl@0
|
1050 |
User::Leave(KErrNotSupported);
|
sl@0
|
1051 |
}
|
sl@0
|
1052 |
|
sl@0
|
1053 |
/**
|
sl@0
|
1054 |
Marker method to mark end of providing selective settings for embedded still captures only (not to video capture)
|
sl@0
|
1055 |
|
sl@0
|
1056 |
@note Any feature setting issued after calling this method is treated as a normal setting operation.
|
sl@0
|
1057 |
|
sl@0
|
1058 |
@note Any getter method issued after calling this method gives feature value which would be used normally.
|
sl@0
|
1059 |
|
sl@0
|
1060 |
@leave May leave with any error code.
|
sl@0
|
1061 |
*/
|
sl@0
|
1062 |
void CCamera::CCameraPreImageCaptureControl::EndEmbeddedStillCaptureSettingsL()
|
sl@0
|
1063 |
{
|
sl@0
|
1064 |
User::Leave(KErrNotSupported);
|
sl@0
|
1065 |
}
|
sl@0
|
1066 |
|
sl@0
|
1067 |
/**
|
sl@0
|
1068 |
Retrieves the list of failed embedded still capture settings.
|
sl@0
|
1069 |
|
sl@0
|
1070 |
@param aFailedEmbeddedStillCaptureSettings
|
sl@0
|
1071 |
Array of uids which reflects the failed embedded still capture settings.
|
sl@0
|
1072 |
|
sl@0
|
1073 |
@note This method may be issued after receiving the notification KUidECamEventFailedEmbeddedStillCaptureSetting.
|
sl@0
|
1074 |
*/
|
sl@0
|
1075 |
void CCamera::CCameraPreImageCaptureControl::GetFailedEmbeddedStillCaptureSettingsL(RArray<TUid>& /*aFailedEmbeddedStillCaptureSettings*/) const
|
sl@0
|
1076 |
{
|
sl@0
|
1077 |
User::Leave(KErrNotSupported);
|
sl@0
|
1078 |
}
|
sl@0
|
1079 |
|
sl@0
|
1080 |
/**
|
sl@0
|
1081 |
@publishedPartner
|
sl@0
|
1082 |
Factory function for creating the CCameraImageCapture object. This will be called only by the concrete implementation
|
sl@0
|
1083 |
of MCameraPreImageCaptureControl::PrepareImageCapture(const TPrepareImageParameters& aPrepareImageParameters,
|
sl@0
|
1084 |
MCaptureImageObserver& aCaptureImageObserver).
|
sl@0
|
1085 |
|
sl@0
|
1086 |
@param aCamera
|
sl@0
|
1087 |
a reference to a CCamera object providing the settings.
|
sl@0
|
1088 |
|
sl@0
|
1089 |
@param aPrepareImageParameters
|
sl@0
|
1090 |
TPrepareImageParameters tied with this image capture class object.
|
sl@0
|
1091 |
|
sl@0
|
1092 |
@param aCaptureImageObserver
|
sl@0
|
1093 |
Reference to the capture image observer.
|
sl@0
|
1094 |
|
sl@0
|
1095 |
@return a pointer to a fully constructed CCameraImageCapture object.
|
sl@0
|
1096 |
|
sl@0
|
1097 |
@leave KErrNoMemory Out of memory Or any other system-wide error code.
|
sl@0
|
1098 |
*/
|
sl@0
|
1099 |
EXPORT_C CCamera::CCameraImageCapture* CCamera::CCameraImageCapture::CreateL(CCamera& aCamera, const CCamera::CCameraPreImageCaptureControl
|
sl@0
|
1100 |
::TPrepareImageParameters& aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver)
|
sl@0
|
1101 |
{
|
sl@0
|
1102 |
CCamera::CCameraImageCapture* self = new (ELeave)CCamera::CCameraImageCapture(aCamera);
|
sl@0
|
1103 |
CleanupStack::PushL(self);
|
sl@0
|
1104 |
self->ConstructL(aPrepareImageParameters, aCaptureImageObserver);
|
sl@0
|
1105 |
CleanupStack::Pop(self);
|
sl@0
|
1106 |
|
sl@0
|
1107 |
return self;
|
sl@0
|
1108 |
}
|
sl@0
|
1109 |
|
sl@0
|
1110 |
/**
|
sl@0
|
1111 |
CCameraImageCapture Constructor.
|
sl@0
|
1112 |
|
sl@0
|
1113 |
@param aOwner
|
sl@0
|
1114 |
a reference to a CCamera object.
|
sl@0
|
1115 |
*/
|
sl@0
|
1116 |
CCamera::CCameraImageCapture::CCameraImageCapture(CCamera& aOwner):
|
sl@0
|
1117 |
iOwner(aOwner),
|
sl@0
|
1118 |
iImpl(NULL)
|
sl@0
|
1119 |
{
|
sl@0
|
1120 |
}
|
sl@0
|
1121 |
|
sl@0
|
1122 |
/**
|
sl@0
|
1123 |
CCameraImageCapture second phase constructor.
|
sl@0
|
1124 |
|
sl@0
|
1125 |
Function used to initialise internal state of the object. Uses reference to the camera to retrieve
|
sl@0
|
1126 |
CameraImageCapture interface pointer.
|
sl@0
|
1127 |
|
sl@0
|
1128 |
@param aPrepareImageParameters
|
sl@0
|
1129 |
TPrepareImageParameters tied with this image capture class object.
|
sl@0
|
1130 |
|
sl@0
|
1131 |
@param aCaptureImageObserver
|
sl@0
|
1132 |
Reference to the capture image observer.
|
sl@0
|
1133 |
|
sl@0
|
1134 |
@leave KErrNoMemory Out of memory or any other system-wide error code
|
sl@0
|
1135 |
*/
|
sl@0
|
1136 |
void CCamera::CCameraImageCapture::ConstructL(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters&
|
sl@0
|
1137 |
aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver)
|
sl@0
|
1138 |
{
|
sl@0
|
1139 |
iImpl = static_cast<MCameraImageCapture*>(iOwner.CustomInterface(KECamMCameraImageCaptureUid));
|
sl@0
|
1140 |
|
sl@0
|
1141 |
if (iImpl == NULL)
|
sl@0
|
1142 |
{
|
sl@0
|
1143 |
User::Leave(KErrNotSupported);
|
sl@0
|
1144 |
}
|
sl@0
|
1145 |
|
sl@0
|
1146 |
iImpl->SetPrepareImageParameters(aPrepareImageParameters);
|
sl@0
|
1147 |
iImpl->SetCaptureImageObserver(aCaptureImageObserver);
|
sl@0
|
1148 |
}
|
sl@0
|
1149 |
|
sl@0
|
1150 |
/**
|
sl@0
|
1151 |
Returns the MCameraImageCapture* which will be used by the CCameraPostImageCaptureControl for the concrete
|
sl@0
|
1152 |
implementation. Both CCameraImageCapture and CCameraPostImageCaptureControl are made to use the same interface
|
sl@0
|
1153 |
for implementation.
|
sl@0
|
1154 |
|
sl@0
|
1155 |
@return Pointer to the MCameraImageCapture class.
|
sl@0
|
1156 |
*/
|
sl@0
|
1157 |
MCameraImageCapture* CCamera::CCameraImageCapture::Impl() const
|
sl@0
|
1158 |
{
|
sl@0
|
1159 |
return iImpl;
|
sl@0
|
1160 |
}
|
sl@0
|
1161 |
|
sl@0
|
1162 |
/**
|
sl@0
|
1163 |
Destructor
|
sl@0
|
1164 |
Destruction of this class is equivalent to releasing the resources owned in order to prepare and allocate memory for
|
sl@0
|
1165 |
capturing images.
|
sl@0
|
1166 |
|
sl@0
|
1167 |
@note The child objects created out of this image capture class object shall be delete beforehand. Various child objects
|
sl@0
|
1168 |
are snapshot, image processing and histograms.
|
sl@0
|
1169 |
*/
|
sl@0
|
1170 |
EXPORT_C CCamera::CCameraImageCapture::~CCameraImageCapture()
|
sl@0
|
1171 |
{
|
sl@0
|
1172 |
if (iImpl != NULL)
|
sl@0
|
1173 |
{
|
sl@0
|
1174 |
//cancel any outstanding capture image operation at implementation level.
|
sl@0
|
1175 |
//destory every CCameraPostImageCaptureControl object created by the implementation.
|
sl@0
|
1176 |
iImpl->Release(this);
|
sl@0
|
1177 |
}
|
sl@0
|
1178 |
}
|
sl@0
|
1179 |
|
sl@0
|
1180 |
/**
|
sl@0
|
1181 |
Retrieve pointer to histogram API in order to use it specifically for a specific still image capture.
|
sl@0
|
1182 |
|
sl@0
|
1183 |
@return Pointer to use histogram API specifically for the given still image capture.
|
sl@0
|
1184 |
|
sl@0
|
1185 |
@leave May leave with any error code.
|
sl@0
|
1186 |
|
sl@0
|
1187 |
@note Different types of histogram may be used for a specific still image capture. Every time this method will be called
|
sl@0
|
1188 |
on the CCameraImageCapture class object, a new type of histogram will be created.
|
sl@0
|
1189 |
*/
|
sl@0
|
1190 |
EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraImageCapture::CreateHistogramHandleL() const
|
sl@0
|
1191 |
{
|
sl@0
|
1192 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
1193 |
|
sl@0
|
1194 |
iImpl->CreateHistogramImplFactoryL(implFactory);
|
sl@0
|
1195 |
|
sl@0
|
1196 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
1197 |
CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
|
sl@0
|
1198 |
CleanupStack::Pop(implFactory);
|
sl@0
|
1199 |
|
sl@0
|
1200 |
implFactory->Release();
|
sl@0
|
1201 |
return histogram;
|
sl@0
|
1202 |
}
|
sl@0
|
1203 |
|
sl@0
|
1204 |
/**
|
sl@0
|
1205 |
Retrieve pointer to snapshot API in order to use it specifically for a specific still image capture.
|
sl@0
|
1206 |
|
sl@0
|
1207 |
@param aClientViewFinderId
|
sl@0
|
1208 |
The client viewfinder on which this client snapshot will be displayed.
|
sl@0
|
1209 |
|
sl@0
|
1210 |
@return Pointer to use snapshot API specifically for the given still image capture.
|
sl@0
|
1211 |
|
sl@0
|
1212 |
@leave May leave with any error code.
|
sl@0
|
1213 |
*/
|
sl@0
|
1214 |
EXPORT_C CCamera::CCameraSnapshot* CCamera::CCameraImageCapture::GetSnapshotHandleL(TInt aClientViewFinderId) const
|
sl@0
|
1215 |
{
|
sl@0
|
1216 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
1217 |
|
sl@0
|
1218 |
iImpl->GetSnapshotImplFactoryL(implFactory);
|
sl@0
|
1219 |
|
sl@0
|
1220 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
1221 |
CCamera::CCameraSnapshot* snapshot = CCamera::CCameraSnapshot::CreateL(iOwner, *implFactory, aClientViewFinderId);
|
sl@0
|
1222 |
CleanupStack::Pop(implFactory);
|
sl@0
|
1223 |
|
sl@0
|
1224 |
implFactory->Release();
|
sl@0
|
1225 |
|
sl@0
|
1226 |
return snapshot;
|
sl@0
|
1227 |
}
|
sl@0
|
1228 |
|
sl@0
|
1229 |
/**
|
sl@0
|
1230 |
Retrieve pointer to image processing API in order to use it specifically for tha specific still image capture.
|
sl@0
|
1231 |
|
sl@0
|
1232 |
@return Pointer to use image processing API specifically for the given still image capture.
|
sl@0
|
1233 |
|
sl@0
|
1234 |
@leave May leave with any error code.
|
sl@0
|
1235 |
*/
|
sl@0
|
1236 |
EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraImageCapture::GetTransformationHandleL() const
|
sl@0
|
1237 |
{
|
sl@0
|
1238 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
1239 |
|
sl@0
|
1240 |
iImpl->GetImageProcessingImplFactoryL(implFactory);
|
sl@0
|
1241 |
|
sl@0
|
1242 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
1243 |
CCamera::CCameraImageProcessing* imgProc = CCamera::CCameraImageProcessing::CreateL(iOwner, *implFactory);
|
sl@0
|
1244 |
CleanupStack::Pop(implFactory);
|
sl@0
|
1245 |
|
sl@0
|
1246 |
implFactory->Release();
|
sl@0
|
1247 |
return imgProc;
|
sl@0
|
1248 |
}
|
sl@0
|
1249 |
|
sl@0
|
1250 |
/**
|
sl@0
|
1251 |
Retrieves the prepare image parameters tied with this image capture class object.
|
sl@0
|
1252 |
|
sl@0
|
1253 |
@param aPrepareImageParameters
|
sl@0
|
1254 |
TPrepareImageParameters tied with this image capture class object.
|
sl@0
|
1255 |
|
sl@0
|
1256 |
@leave May leave with any error code
|
sl@0
|
1257 |
*/
|
sl@0
|
1258 |
EXPORT_C void CCamera::CCameraImageCapture::GetPrepareImageParametersL(CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters) const
|
sl@0
|
1259 |
{
|
sl@0
|
1260 |
iImpl->GetPrepareImageParametersL(aPrepareImageParameters);
|
sl@0
|
1261 |
}
|
sl@0
|
1262 |
|
sl@0
|
1263 |
/**
|
sl@0
|
1264 |
Performant image capture. This postpones the processing options involved with current image captured in order to
|
sl@0
|
1265 |
capture/prepare for next images.
|
sl@0
|
1266 |
|
sl@0
|
1267 |
Previously created CCameraPostImageCaptureControl objects for this CCameraImageCapture object will become unavailable
|
sl@0
|
1268 |
after this call.
|
sl@0
|
1269 |
|
sl@0
|
1270 |
@note Further images (either still or video) can be captured only after receiving the notification
|
sl@0
|
1271 |
KUidECamEventReadyForNextCapture. Current image may be outstanding in order to undergo any processing options.
|
sl@0
|
1272 |
|
sl@0
|
1273 |
@note Callback MCaptureImageObserver::ImageCaptureComplete() informs the client that the image capture operation has
|
sl@0
|
1274 |
been completed. The CCameraImageCapture& can be further used for next image captures.
|
sl@0
|
1275 |
In case of continuous drive modes, this callback will be received by the client only once in order to provide the
|
sl@0
|
1276 |
result of the whole image capture operation.
|
sl@0
|
1277 |
|
sl@0
|
1278 |
@note Callback MCaptureImageObserver::ImageBufferReady() provides client the link to CCameraPostImageCaptureControl&
|
sl@0
|
1279 |
which helps retrieving the image buffer. In case of continuous drive modes, this callback will be received by the
|
sl@0
|
1280 |
client for every individual image. In case of single shots, this will be received by the client only once in
|
sl@0
|
1281 |
order to retrieve the image buffer.
|
sl@0
|
1282 |
*/
|
sl@0
|
1283 |
EXPORT_C void CCamera::CCameraImageCapture::CaptureImage()
|
sl@0
|
1284 |
{
|
sl@0
|
1285 |
// MCameraImageCapture concrete implementation will use CCameraImageCapture& to pass in callbacks and to create
|
sl@0
|
1286 |
// CCameraPostImageCaptureControl object for every image and pass it to the client.
|
sl@0
|
1287 |
// Previously created CCameraPostImageCaptureControl objects will become unavailable after this call.
|
sl@0
|
1288 |
iImpl->CaptureImage(this);
|
sl@0
|
1289 |
}
|
sl@0
|
1290 |
|
sl@0
|
1291 |
/**
|
sl@0
|
1292 |
Cancels the outstanding Capture Image operation. This will also cancel any outstanding processing options associated with
|
sl@0
|
1293 |
the concerned Capture Image operation. This method is synchronous. Hence, no callback shall be received with respect
|
sl@0
|
1294 |
to concerned capture image operation.
|
sl@0
|
1295 |
*/
|
sl@0
|
1296 |
EXPORT_C void CCamera::CCameraImageCapture::CancelCaptureImage()
|
sl@0
|
1297 |
{
|
sl@0
|
1298 |
iImpl->CancelCaptureImage();
|
sl@0
|
1299 |
}
|
sl@0
|
1300 |
|
sl@0
|
1301 |
/**
|
sl@0
|
1302 |
Retrieves the number of images exposed to sensor with respect to a specific image capture command. Any processing options
|
sl@0
|
1303 |
associated with these images may be pending.
|
sl@0
|
1304 |
|
sl@0
|
1305 |
@param aNumImagesExposed
|
sl@0
|
1306 |
Retrieves the number of images exposed to sensor till now. For single shot type of drive modes, this value will be
|
sl@0
|
1307 |
one after the image gets exposed to sensor. For multiple shot type of drive modes, this value will be the number of
|
sl@0
|
1308 |
images exposed till now.
|
sl@0
|
1309 |
|
sl@0
|
1310 |
@note May leave with any error code.
|
sl@0
|
1311 |
*/
|
sl@0
|
1312 |
EXPORT_C void CCamera::CCameraImageCapture::GetNumImagesExposedL(TUint& aNumImagesExposed) const
|
sl@0
|
1313 |
{
|
sl@0
|
1314 |
iImpl->GetNumImagesExposedL(aNumImagesExposed);
|
sl@0
|
1315 |
}
|
sl@0
|
1316 |
|
sl@0
|
1317 |
/**
|
sl@0
|
1318 |
Retrieves the total number of images which is supposed to be captured with respect to a specific image capture command.
|
sl@0
|
1319 |
|
sl@0
|
1320 |
@param aNumTotalImages
|
sl@0
|
1321 |
Retrieves the total number of images supposed to be captured. For single shot type of drive modes, this value will be
|
sl@0
|
1322 |
always be one. For multiple shot type of drive modes, this value will be greater than one.
|
sl@0
|
1323 |
|
sl@0
|
1324 |
@note May leave with any error code.
|
sl@0
|
1325 |
*/
|
sl@0
|
1326 |
EXPORT_C void CCamera::CCameraImageCapture::GetNumTotalImagesL(TUint& aNumTotalImages) const
|
sl@0
|
1327 |
{
|
sl@0
|
1328 |
iImpl->GetNumTotalImagesL(aNumTotalImages);
|
sl@0
|
1329 |
}
|
sl@0
|
1330 |
|
sl@0
|
1331 |
/**
|
sl@0
|
1332 |
Retrieves the post capture control handle based on the ID passed to it. Client may use this handle for post capture
|
sl@0
|
1333 |
operations of the image identified by the ID. The ID is received by the clients through MCaptureImageObserver callbacks.
|
sl@0
|
1334 |
|
sl@0
|
1335 |
@param aPostCaptureControlHandle
|
sl@0
|
1336 |
Retrieves pointer to the post capture control class object.
|
sl@0
|
1337 |
|
sl@0
|
1338 |
@param aPostCaptureControlId
|
sl@0
|
1339 |
The ID used to retrieve the post capture control handle of the captured image.
|
sl@0
|
1340 |
|
sl@0
|
1341 |
@note May leave with any error code.
|
sl@0
|
1342 |
*/
|
sl@0
|
1343 |
EXPORT_C void CCamera::CCameraImageCapture::GetPostCaptureControlHandleL(CCamera::CCameraPostImageCaptureControl*&
|
sl@0
|
1344 |
aPostCaptureControlHandle, TPostCaptureControlId aPostCaptureControlId) const
|
sl@0
|
1345 |
{
|
sl@0
|
1346 |
iImpl->GetPostCaptureControlHandleL(aPostCaptureControlHandle, aPostCaptureControlId);
|
sl@0
|
1347 |
}
|
sl@0
|
1348 |
|
sl@0
|
1349 |
/**
|
sl@0
|
1350 |
Prioritises the Capture Image operation. This implies that any processing options associated with the concerned Capture
|
sl@0
|
1351 |
Image operation will be prioritised over other pending processing options.
|
sl@0
|
1352 |
|
sl@0
|
1353 |
@param aCaptureImagePriority
|
sl@0
|
1354 |
The desired level of priority.
|
sl@0
|
1355 |
|
sl@0
|
1356 |
@leave May leave with any error code.
|
sl@0
|
1357 |
*/
|
sl@0
|
1358 |
EXPORT_C void CCamera::CCameraImageCapture::SetCaptureImagePriorityL(TECamImagePriority aCaptureImagePriority)
|
sl@0
|
1359 |
{
|
sl@0
|
1360 |
iImpl->SetCaptureImagePriorityL(aCaptureImagePriority);
|
sl@0
|
1361 |
}
|
sl@0
|
1362 |
|
sl@0
|
1363 |
/**
|
sl@0
|
1364 |
Retrieves the priority of the Capture Image operation.
|
sl@0
|
1365 |
|
sl@0
|
1366 |
@param aCaptureImagePriority
|
sl@0
|
1367 |
Retrieves the current level of priority.
|
sl@0
|
1368 |
|
sl@0
|
1369 |
@leave May leave with any error code.
|
sl@0
|
1370 |
*/
|
sl@0
|
1371 |
EXPORT_C void CCamera::CCameraImageCapture::GetCaptureImagePriorityL(TECamImagePriority& aCaptureImagePriority) const
|
sl@0
|
1372 |
{
|
sl@0
|
1373 |
iImpl->GetCaptureImagePriorityL(aCaptureImagePriority);
|
sl@0
|
1374 |
}
|
sl@0
|
1375 |
|
sl@0
|
1376 |
/**
|
sl@0
|
1377 |
Pauses processing options associated with the concerned Capture Image operation.
|
sl@0
|
1378 |
|
sl@0
|
1379 |
@param aProcessingTypes
|
sl@0
|
1380 |
The processing options which need to be paused.
|
sl@0
|
1381 |
*/
|
sl@0
|
1382 |
EXPORT_C void CCamera::CCameraImageCapture::PauseProcessing(TUint aProcessingTypes)
|
sl@0
|
1383 |
{
|
sl@0
|
1384 |
iImpl->PauseProcessing(aProcessingTypes);
|
sl@0
|
1385 |
}
|
sl@0
|
1386 |
|
sl@0
|
1387 |
/**
|
sl@0
|
1388 |
Resumes processing options associated with the concerned Capture Image operation.
|
sl@0
|
1389 |
|
sl@0
|
1390 |
@param aProcessingTypes
|
sl@0
|
1391 |
The processing options which need to be resumed.
|
sl@0
|
1392 |
|
sl@0
|
1393 |
@leave May leave with any error code.
|
sl@0
|
1394 |
*/
|
sl@0
|
1395 |
EXPORT_C void CCamera::CCameraImageCapture::ResumeProcessingL(TUint aProcessingTypes)
|
sl@0
|
1396 |
{
|
sl@0
|
1397 |
iImpl->ResumeProcessingL(aProcessingTypes);
|
sl@0
|
1398 |
}
|
sl@0
|
1399 |
|
sl@0
|
1400 |
/**
|
sl@0
|
1401 |
@publishedPartner
|
sl@0
|
1402 |
|
sl@0
|
1403 |
Factory function for creating the CCameraPostImageCaptureControl object for every individual image to be captured.
|
sl@0
|
1404 |
This method is supposed to be called only by concrete implementation of MCameraImageCapture. It will be the client's
|
sl@0
|
1405 |
responsibility to destroy it whenever it does not need it any more. (Possible milestone for deletion: Individual image cancellation completed,
|
sl@0
|
1406 |
individual image saved). Previously created CCameraPostImageCaptureControl objects for the CCameraImageCapture object will
|
sl@0
|
1407 |
become unavailable if CaptureImage() is called while previous call on the same object is still outstanding.
|
sl@0
|
1408 |
|
sl@0
|
1409 |
@param aCameraImageCapture
|
sl@0
|
1410 |
A pointer to the CCameraImageCapture which was used to issue the Capture Image call.
|
sl@0
|
1411 |
|
sl@0
|
1412 |
@param aPostCaptureControlId
|
sl@0
|
1413 |
The ID used for identification of the post capture control class object by the clients. The ID is passed by the
|
sl@0
|
1414 |
implementation while creating this object.
|
sl@0
|
1415 |
|
sl@0
|
1416 |
@return a pointer to a fully constructed CCameraPostImageCaptureControl object.
|
sl@0
|
1417 |
|
sl@0
|
1418 |
@leave KErrNoMemory Out of memory Or any other system-wide error code.
|
sl@0
|
1419 |
*/
|
sl@0
|
1420 |
EXPORT_C CCamera::CCameraPostImageCaptureControl* CCamera::CCameraPostImageCaptureControl::CreateL(CCameraImageCapture* aCameraImageCapture, TPostCaptureControlId aPostCaptureControlId)
|
sl@0
|
1421 |
{
|
sl@0
|
1422 |
CCamera::CCameraPostImageCaptureControl* self = new (ELeave)CCamera::CCameraPostImageCaptureControl(aCameraImageCapture, aPostCaptureControlId);
|
sl@0
|
1423 |
CleanupStack::PushL(self);
|
sl@0
|
1424 |
self->ConstructL();
|
sl@0
|
1425 |
CleanupStack::Pop(self);
|
sl@0
|
1426 |
|
sl@0
|
1427 |
return self;
|
sl@0
|
1428 |
}
|
sl@0
|
1429 |
|
sl@0
|
1430 |
/**
|
sl@0
|
1431 |
CCameraPostImageCaptureControl Constructor.
|
sl@0
|
1432 |
|
sl@0
|
1433 |
@param aOwner
|
sl@0
|
1434 |
a reference to a CCamera object.
|
sl@0
|
1435 |
|
sl@0
|
1436 |
@param aPostCaptureControlId
|
sl@0
|
1437 |
The ID used for identification of the post capture control class object by the clients. The ID is passed by the
|
sl@0
|
1438 |
implementation while creating this object.
|
sl@0
|
1439 |
*/
|
sl@0
|
1440 |
CCamera::CCameraPostImageCaptureControl::CCameraPostImageCaptureControl(CCamera::CCameraImageCapture* aCameraImageCapture, TInt aPostCaptureControlId):
|
sl@0
|
1441 |
iPostCaptureControlId(aPostCaptureControlId),
|
sl@0
|
1442 |
iCameraImageCapture(aCameraImageCapture),
|
sl@0
|
1443 |
iImpl(NULL)
|
sl@0
|
1444 |
{
|
sl@0
|
1445 |
}
|
sl@0
|
1446 |
|
sl@0
|
1447 |
/**
|
sl@0
|
1448 |
CCameraPostImageCaptureControl second phase constructor.
|
sl@0
|
1449 |
|
sl@0
|
1450 |
Function used to initialise internal state of the object. Uses CCameraImageCapture* to retrieve
|
sl@0
|
1451 |
CCameraPostImageCaptureControl interface pointer. This interface pointer is provided by 'CCameraImageCapture interface'.
|
sl@0
|
1452 |
|
sl@0
|
1453 |
@leave KErrNoMemory Out of memory or any other system-wide error code
|
sl@0
|
1454 |
*/
|
sl@0
|
1455 |
void CCamera::CCameraPostImageCaptureControl::ConstructL()
|
sl@0
|
1456 |
{
|
sl@0
|
1457 |
iImpl = static_cast<MCameraPostImageCaptureControl*>(iCameraImageCapture->Impl()->CreatePostImageCaptureControlImpl(KECamMCameraPostImageCaptureControlUid, iPostCaptureControlId));
|
sl@0
|
1458 |
|
sl@0
|
1459 |
if (iImpl == NULL)
|
sl@0
|
1460 |
{
|
sl@0
|
1461 |
User::Leave(KErrNotSupported);
|
sl@0
|
1462 |
}
|
sl@0
|
1463 |
}
|
sl@0
|
1464 |
|
sl@0
|
1465 |
/**
|
sl@0
|
1466 |
Destructor
|
sl@0
|
1467 |
*/
|
sl@0
|
1468 |
EXPORT_C CCamera::CCameraPostImageCaptureControl::~CCameraPostImageCaptureControl()
|
sl@0
|
1469 |
{
|
sl@0
|
1470 |
iCameraImageCapture = NULL;
|
sl@0
|
1471 |
if(iImpl != NULL)
|
sl@0
|
1472 |
{
|
sl@0
|
1473 |
//cancel any outstanding image at implementation level.
|
sl@0
|
1474 |
iImpl->Release(iPostCaptureControlId);
|
sl@0
|
1475 |
}
|
sl@0
|
1476 |
}
|
sl@0
|
1477 |
|
sl@0
|
1478 |
/**
|
sl@0
|
1479 |
Retrieves the ID which this class object represents. The ID is unique for this class object and is used for identification
|
sl@0
|
1480 |
purpose.
|
sl@0
|
1481 |
|
sl@0
|
1482 |
@param aPostCaptureControlId
|
sl@0
|
1483 |
Reference to the post capture control ID.
|
sl@0
|
1484 |
*/
|
sl@0
|
1485 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::GetPostCaptureControlId(TPostCaptureControlId& aPostCaptureControlId) const
|
sl@0
|
1486 |
{
|
sl@0
|
1487 |
aPostCaptureControlId = iPostCaptureControlId;
|
sl@0
|
1488 |
}
|
sl@0
|
1489 |
|
sl@0
|
1490 |
/**
|
sl@0
|
1491 |
Retrieves the CCameraImageCapture* associated with the object of this class. This implies that the individual image, which
|
sl@0
|
1492 |
the object of this class is referring to, belongs to the CaptureImage operation issued by CCameraImageCapture* object.
|
sl@0
|
1493 |
|
sl@0
|
1494 |
@return Pointer to CCameraImageCapture associated with the object of this class.
|
sl@0
|
1495 |
*/
|
sl@0
|
1496 |
EXPORT_C CCamera::CCameraImageCapture* CCamera::CCameraPostImageCaptureControl::ImageCaptureHandle() const
|
sl@0
|
1497 |
{
|
sl@0
|
1498 |
return iCameraImageCapture;
|
sl@0
|
1499 |
}
|
sl@0
|
1500 |
|
sl@0
|
1501 |
/**
|
sl@0
|
1502 |
Retrieves the sequence number of the image being represented by this post capture control object. The sequence number
|
sl@0
|
1503 |
specifies the index of the individual image if, in case, the multiple shot type of drive mode is being used. The first
|
sl@0
|
1504 |
individual image which is exposed to the sensor has a sequence number of zero. In case of single shot type of drive mode,
|
sl@0
|
1505 |
the sequence number will be zero.
|
sl@0
|
1506 |
|
sl@0
|
1507 |
@param aSequenceNumber
|
sl@0
|
1508 |
Retrieves the sequence number of the image.
|
sl@0
|
1509 |
|
sl@0
|
1510 |
@leave May leave with any error code.
|
sl@0
|
1511 |
*/
|
sl@0
|
1512 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::GetImageSequenceNumberL(TUint& aSequenceNumber) const
|
sl@0
|
1513 |
{
|
sl@0
|
1514 |
iImpl->GetImageSequenceNumberL(aSequenceNumber);
|
sl@0
|
1515 |
}
|
sl@0
|
1516 |
|
sl@0
|
1517 |
/**
|
sl@0
|
1518 |
Cancels the outstanding individual image which the object of this class is referring to. This will also cancel any outstanding
|
sl@0
|
1519 |
processing options associated with this individual image. This method is synchronous. Hence, no callback shall be received
|
sl@0
|
1520 |
for this individual image.
|
sl@0
|
1521 |
*/
|
sl@0
|
1522 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::CancelImage()
|
sl@0
|
1523 |
{
|
sl@0
|
1524 |
iImpl->CancelImage();
|
sl@0
|
1525 |
}
|
sl@0
|
1526 |
|
sl@0
|
1527 |
/**
|
sl@0
|
1528 |
Prioritises the individual image which the object of this class is referring to. This implies that any processing
|
sl@0
|
1529 |
options associated with this individual image will be prioritised over other pending processing options.
|
sl@0
|
1530 |
|
sl@0
|
1531 |
@param aImagePriority
|
sl@0
|
1532 |
The desired level of priority.
|
sl@0
|
1533 |
|
sl@0
|
1534 |
@leave May leave with any error code.
|
sl@0
|
1535 |
*/
|
sl@0
|
1536 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::SetImagePriorityL(TECamImagePriority aImagePriority)
|
sl@0
|
1537 |
{
|
sl@0
|
1538 |
iImpl->SetImagePriorityL(aImagePriority);
|
sl@0
|
1539 |
}
|
sl@0
|
1540 |
|
sl@0
|
1541 |
/**
|
sl@0
|
1542 |
Retrieves the priority of the individual image which the object of this class is referring to.
|
sl@0
|
1543 |
|
sl@0
|
1544 |
@param aImagePriority
|
sl@0
|
1545 |
The current level of priority.
|
sl@0
|
1546 |
|
sl@0
|
1547 |
@leave May leave with any error code.
|
sl@0
|
1548 |
*/
|
sl@0
|
1549 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::GetImagePriorityL(TECamImagePriority& aImagePriority) const
|
sl@0
|
1550 |
{
|
sl@0
|
1551 |
iImpl->GetImagePriorityL(aImagePriority);
|
sl@0
|
1552 |
}
|
sl@0
|
1553 |
|
sl@0
|
1554 |
/**
|
sl@0
|
1555 |
Pauses processing options associated with the individual image which the object of this class is referring to.
|
sl@0
|
1556 |
|
sl@0
|
1557 |
@param aProcessingTypes
|
sl@0
|
1558 |
The processing options which need to be paused.
|
sl@0
|
1559 |
*/
|
sl@0
|
1560 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::PauseProcessing(TUint aProcessingTypes)
|
sl@0
|
1561 |
{
|
sl@0
|
1562 |
iImpl->PauseProcessing(aProcessingTypes);
|
sl@0
|
1563 |
}
|
sl@0
|
1564 |
|
sl@0
|
1565 |
/**
|
sl@0
|
1566 |
Resumes processing options associated with the individual image which the object of this class is referring to.
|
sl@0
|
1567 |
|
sl@0
|
1568 |
@param aProcessingTypes
|
sl@0
|
1569 |
The processing options which need to be resumed.
|
sl@0
|
1570 |
|
sl@0
|
1571 |
@leave May leave with any error code.
|
sl@0
|
1572 |
*/
|
sl@0
|
1573 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::ResumeProcessingL(TUint aProcessingTypes)
|
sl@0
|
1574 |
{
|
sl@0
|
1575 |
iImpl->ResumeProcessingL(aProcessingTypes);
|
sl@0
|
1576 |
}
|
sl@0
|
1577 |
|
sl@0
|
1578 |
/**
|
sl@0
|
1579 |
Retrieves the image buffer which contains the individual image captured. This method should be called by the client as a
|
sl@0
|
1580 |
result of receiving the callback MCaptureImageObserver::ImageBufferReady(), if the error information received is
|
sl@0
|
1581 |
satisfactory.
|
sl@0
|
1582 |
|
sl@0
|
1583 |
@param aCameraImageBuffer
|
sl@0
|
1584 |
A reference to an MCameraImageBuffer if successful, or NULL if not successful.
|
sl@0
|
1585 |
|
sl@0
|
1586 |
@leave May leave with any error code.
|
sl@0
|
1587 |
*/
|
sl@0
|
1588 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::GetImageBufferL(MCameraImageBuffer& aCameraImageBuffer) const
|
sl@0
|
1589 |
{
|
sl@0
|
1590 |
iImpl->GetImageBufferL(aCameraImageBuffer);
|
sl@0
|
1591 |
}
|
sl@0
|
1592 |
|
sl@0
|
1593 |
/**
|
sl@0
|
1594 |
Retrieves the state of the individual image which the object of this class is referring to.
|
sl@0
|
1595 |
|
sl@0
|
1596 |
@param aImageState
|
sl@0
|
1597 |
Retrieves the current state of the individual image.
|
sl@0
|
1598 |
|
sl@0
|
1599 |
@leave May leave with any error code.
|
sl@0
|
1600 |
*/
|
sl@0
|
1601 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::GetImageStateL(TImageState& aImageState) const
|
sl@0
|
1602 |
{
|
sl@0
|
1603 |
iImpl->GetImageStateL(aImageState);
|
sl@0
|
1604 |
}
|
sl@0
|
1605 |
|
sl@0
|
1606 |
/**
|
sl@0
|
1607 |
Retrieves the state of the individual image buffer.
|
sl@0
|
1608 |
|
sl@0
|
1609 |
@param aBufferState
|
sl@0
|
1610 |
Retrieves the current state of the individual image buffer.
|
sl@0
|
1611 |
|
sl@0
|
1612 |
@leave May leave with any error code.
|
sl@0
|
1613 |
*/
|
sl@0
|
1614 |
EXPORT_C void CCamera::CCameraPostImageCaptureControl::GetBufferStateL(TBufferState& aBufferState) const
|
sl@0
|
1615 |
{
|
sl@0
|
1616 |
iImpl->GetBufferStateL(aBufferState);
|
sl@0
|
1617 |
}
|
sl@0
|
1618 |
|
sl@0
|
1619 |
/**
|
sl@0
|
1620 |
Factory function for creating the CCameraVideoCaptureControl object.
|
sl@0
|
1621 |
|
sl@0
|
1622 |
@param aCamera
|
sl@0
|
1623 |
A reference to a CCamera object providing the settings.
|
sl@0
|
1624 |
|
sl@0
|
1625 |
@param aCaptureVideoObserver
|
sl@0
|
1626 |
Reference to the capture video observer.
|
sl@0
|
1627 |
|
sl@0
|
1628 |
@return a pointer to a fully constructed CCameraVideoCaptureControl object.
|
sl@0
|
1629 |
|
sl@0
|
1630 |
@leave KErrNoMemory Out of memory Or any other system-wide error code.
|
sl@0
|
1631 |
|
sl@0
|
1632 |
@leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
|
sl@0
|
1633 |
*/
|
sl@0
|
1634 |
EXPORT_C CCamera::CCameraVideoCaptureControl* CCamera::CCameraVideoCaptureControl::NewL(CCamera& aCamera, MCaptureVideoObserver& aCaptureVideoObserver)
|
sl@0
|
1635 |
{
|
sl@0
|
1636 |
if(aCamera.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
1637 |
{
|
sl@0
|
1638 |
User::Leave(KErrExtensionNotSupported);
|
sl@0
|
1639 |
}
|
sl@0
|
1640 |
|
sl@0
|
1641 |
CCamera::CCameraVideoCaptureControl* self = new (ELeave)CCamera::CCameraVideoCaptureControl(aCamera);
|
sl@0
|
1642 |
CleanupStack::PushL(self);
|
sl@0
|
1643 |
self->ConstructL(aCaptureVideoObserver);
|
sl@0
|
1644 |
CleanupStack::Pop(self);
|
sl@0
|
1645 |
|
sl@0
|
1646 |
return self;
|
sl@0
|
1647 |
}
|
sl@0
|
1648 |
|
sl@0
|
1649 |
/**
|
sl@0
|
1650 |
CCameraVideoCaptureControl Constructor.
|
sl@0
|
1651 |
|
sl@0
|
1652 |
@param aOwner
|
sl@0
|
1653 |
a reference to a CCamera object.
|
sl@0
|
1654 |
*/
|
sl@0
|
1655 |
CCamera::CCameraVideoCaptureControl::CCameraVideoCaptureControl(CCamera& aOwner):iOwner(aOwner), iImpl(NULL)
|
sl@0
|
1656 |
{
|
sl@0
|
1657 |
}
|
sl@0
|
1658 |
|
sl@0
|
1659 |
/**
|
sl@0
|
1660 |
CCameraVideoCaptureControl second phase constructor.
|
sl@0
|
1661 |
|
sl@0
|
1662 |
Function used to initialise internal state of the object. Uses reference to the camera to retrieve
|
sl@0
|
1663 |
Camera Video Capture Control interface pointer.
|
sl@0
|
1664 |
|
sl@0
|
1665 |
@param aCaptureVideoObserver
|
sl@0
|
1666 |
Reference to the capture video observer.
|
sl@0
|
1667 |
|
sl@0
|
1668 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
1669 |
*/
|
sl@0
|
1670 |
void CCamera::CCameraVideoCaptureControl::ConstructL(MCaptureVideoObserver& aCaptureVideoObserver)
|
sl@0
|
1671 |
{
|
sl@0
|
1672 |
iImpl = static_cast<MCameraVideoCaptureControl*>(iOwner.CustomInterface(KECamMCameraVideoCaptureControlUid));
|
sl@0
|
1673 |
|
sl@0
|
1674 |
if (iImpl == NULL)
|
sl@0
|
1675 |
{
|
sl@0
|
1676 |
User::Leave(KErrNotSupported);
|
sl@0
|
1677 |
}
|
sl@0
|
1678 |
|
sl@0
|
1679 |
iImpl->SetCaptureVideoObserver(aCaptureVideoObserver);
|
sl@0
|
1680 |
}
|
sl@0
|
1681 |
|
sl@0
|
1682 |
/**
|
sl@0
|
1683 |
Destructor
|
sl@0
|
1684 |
|
sl@0
|
1685 |
@note The child objects created out of this video capture control class object shall be delete beforehand. Various child
|
sl@0
|
1686 |
objects are snapshot, image processing and histograms.
|
sl@0
|
1687 |
*/
|
sl@0
|
1688 |
EXPORT_C CCamera::CCameraVideoCaptureControl::~CCameraVideoCaptureControl()
|
sl@0
|
1689 |
{
|
sl@0
|
1690 |
if (iImpl != NULL)
|
sl@0
|
1691 |
{
|
sl@0
|
1692 |
iImpl->Release();
|
sl@0
|
1693 |
}
|
sl@0
|
1694 |
}
|
sl@0
|
1695 |
|
sl@0
|
1696 |
/**
|
sl@0
|
1697 |
Retrieve pointer to histogram API in order to use it specifically for the video capture.
|
sl@0
|
1698 |
|
sl@0
|
1699 |
@return Pointer to use histogram API specifically for the video capture.
|
sl@0
|
1700 |
|
sl@0
|
1701 |
@leave May leave with any error code.
|
sl@0
|
1702 |
|
sl@0
|
1703 |
@note Different types of histogram may be used for video capture. Every time this method will be called
|
sl@0
|
1704 |
on the CCameraVideoCaptureControl class object, a new type of histogram will be created.
|
sl@0
|
1705 |
*/
|
sl@0
|
1706 |
EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraVideoCaptureControl::CreateHistogramHandleL() const
|
sl@0
|
1707 |
{
|
sl@0
|
1708 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
1709 |
|
sl@0
|
1710 |
iImpl->CreateHistogramImplFactoryL(implFactory);
|
sl@0
|
1711 |
|
sl@0
|
1712 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
1713 |
CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
|
sl@0
|
1714 |
CleanupStack::Pop(implFactory);
|
sl@0
|
1715 |
|
sl@0
|
1716 |
implFactory->Release();
|
sl@0
|
1717 |
return histogram;
|
sl@0
|
1718 |
}
|
sl@0
|
1719 |
|
sl@0
|
1720 |
|
sl@0
|
1721 |
/**
|
sl@0
|
1722 |
Retrieve pointer to snapshot API in order to use it specifically for the video capture.
|
sl@0
|
1723 |
|
sl@0
|
1724 |
@param aClientViewFinderId
|
sl@0
|
1725 |
The client viewfinder on which this client snapshot will be displayed.
|
sl@0
|
1726 |
|
sl@0
|
1727 |
@return Pointer to use snapshot API specifically for the video capture.
|
sl@0
|
1728 |
|
sl@0
|
1729 |
@leave May leave with any error code.
|
sl@0
|
1730 |
*/
|
sl@0
|
1731 |
EXPORT_C CCamera::CCameraSnapshot* CCamera::CCameraVideoCaptureControl::GetSnapshotHandleL(TInt aClientViewFinderId) const
|
sl@0
|
1732 |
{
|
sl@0
|
1733 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
1734 |
|
sl@0
|
1735 |
iImpl->GetSnapshotImplFactoryL(implFactory);
|
sl@0
|
1736 |
|
sl@0
|
1737 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
1738 |
CCamera::CCameraSnapshot* snapshot = CCamera::CCameraSnapshot::CreateL(iOwner, *implFactory, aClientViewFinderId);
|
sl@0
|
1739 |
CleanupStack::Pop(implFactory);
|
sl@0
|
1740 |
|
sl@0
|
1741 |
implFactory->Release();
|
sl@0
|
1742 |
|
sl@0
|
1743 |
return snapshot;
|
sl@0
|
1744 |
}
|
sl@0
|
1745 |
|
sl@0
|
1746 |
/**
|
sl@0
|
1747 |
Retrieve pointer to image processing API in order to use it specifically for the video capture.
|
sl@0
|
1748 |
|
sl@0
|
1749 |
@return Pointer to use image processing API specifically for the video capture.
|
sl@0
|
1750 |
|
sl@0
|
1751 |
@leave May leave with any error code.
|
sl@0
|
1752 |
*/
|
sl@0
|
1753 |
EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraVideoCaptureControl::GetTransformationHandleL() const
|
sl@0
|
1754 |
{
|
sl@0
|
1755 |
MImplementationFactory* implFactory = NULL;
|
sl@0
|
1756 |
|
sl@0
|
1757 |
iImpl->GetImageProcessingImplFactoryL(implFactory);
|
sl@0
|
1758 |
|
sl@0
|
1759 |
CleanupReleasePushL(*implFactory);
|
sl@0
|
1760 |
CCamera::CCameraImageProcessing* imgProc = CCamera::CCameraImageProcessing::CreateL(iOwner, *implFactory);
|
sl@0
|
1761 |
CleanupStack::Pop(implFactory);
|
sl@0
|
1762 |
|
sl@0
|
1763 |
implFactory->Release();
|
sl@0
|
1764 |
return imgProc;
|
sl@0
|
1765 |
}
|
sl@0
|
1766 |
|
sl@0
|
1767 |
/**
|
sl@0
|
1768 |
Retrieves the supported video formats for a given resolution.
|
sl@0
|
1769 |
|
sl@0
|
1770 |
@param aVideoFormatsSupported
|
sl@0
|
1771 |
A bit field which retrieves the supported video formats for a given resolution.
|
sl@0
|
1772 |
Formats have been defined as CCamera::TFormat
|
sl@0
|
1773 |
|
sl@0
|
1774 |
@param aSize
|
sl@0
|
1775 |
The resolution (or size) for which the total number of supported video formats have to be retrieved.
|
sl@0
|
1776 |
|
sl@0
|
1777 |
@leave May leave with any error code.
|
sl@0
|
1778 |
*/
|
sl@0
|
1779 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetVideoFormatsSupportedL(TUint& aVideoFormatsSupported, const TSize& aSize) const
|
sl@0
|
1780 |
{
|
sl@0
|
1781 |
iImpl->GetVideoFormatsSupportedL(aVideoFormatsSupported, aSize);
|
sl@0
|
1782 |
}
|
sl@0
|
1783 |
|
sl@0
|
1784 |
/**
|
sl@0
|
1785 |
Retrieves the supported pixel aspect ratio for a given resolution in case of video.
|
sl@0
|
1786 |
|
sl@0
|
1787 |
@param aPixelAspectsSupported
|
sl@0
|
1788 |
A bit field which retrieves the supported pixel aspect ratio for a given resolution.
|
sl@0
|
1789 |
Pixel aspect ratio have been defined as CCamera::CCameraAdvancedSettings::TPixelAspectRatio
|
sl@0
|
1790 |
|
sl@0
|
1791 |
@param aVideoFormat
|
sl@0
|
1792 |
The video format for which the supported pixel aspect ratio have to be retrieved.
|
sl@0
|
1793 |
|
sl@0
|
1794 |
@param aSize
|
sl@0
|
1795 |
The resolution (or size) for which the supported pixel aspect ratio have to be retrieved.
|
sl@0
|
1796 |
|
sl@0
|
1797 |
@leave May leave with any error code.
|
sl@0
|
1798 |
*/
|
sl@0
|
1799 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aVideoFormat, const TSize& aSize) const
|
sl@0
|
1800 |
{
|
sl@0
|
1801 |
iImpl->GetPixelAspectsSupportedL(aPixelAspectsSupported, aVideoFormat, aSize);
|
sl@0
|
1802 |
}
|
sl@0
|
1803 |
|
sl@0
|
1804 |
/**
|
sl@0
|
1805 |
Informs whether or not the 'embedded still capture' feature is supported. Allowing still image capture in between on-going
|
sl@0
|
1806 |
video capture is referred to as embedded still capture.
|
sl@0
|
1807 |
|
sl@0
|
1808 |
@param aSupportedEmbeddedStillCaptureTypes
|
sl@0
|
1809 |
Retrieves the supported embedded still capture. The TInt is retrieved as a bit field of supported TEmbeddedStillCaptureTypes.
|
sl@0
|
1810 |
|
sl@0
|
1811 |
@leave May leave with any error code.
|
sl@0
|
1812 |
*/
|
sl@0
|
1813 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetEmbeddedStillCaptureSupportInfoL(TInt& aSupportedEmbeddedStillCaptureTypes) const
|
sl@0
|
1814 |
{
|
sl@0
|
1815 |
iImpl->GetEmbeddedStillCaptureSupportInfoL(aSupportedEmbeddedStillCaptureTypes);
|
sl@0
|
1816 |
}
|
sl@0
|
1817 |
|
sl@0
|
1818 |
/**
|
sl@0
|
1819 |
Asynchronous method to prepare for video capture.
|
sl@0
|
1820 |
|
sl@0
|
1821 |
Performs setup and allocation of memory prior to calling StartVideoCapture() to keep the latency of that function to a
|
sl@0
|
1822 |
minimum.
|
sl@0
|
1823 |
|
sl@0
|
1824 |
@param aPrepareVideoParameters
|
sl@0
|
1825 |
Parameters necessary to prepare for video capture.
|
sl@0
|
1826 |
|
sl@0
|
1827 |
@note Event KUidECamEventVideoCaptureControlPrepareComplete is used to notify clients about completing the preparation
|
sl@0
|
1828 |
for video capture.
|
sl@0
|
1829 |
|
sl@0
|
1830 |
@note Next PrepareVideoCapture can be called only after receiving the notification KUidECamEventReadyForNextPrepare.
|
sl@0
|
1831 |
|
sl@0
|
1832 |
@note If some camera settings get affected because of desired video settings such as frame rate/frame size,
|
sl@0
|
1833 |
specific notifications will be sent to the client about camera settings being affected.
|
sl@0
|
1834 |
|
sl@0
|
1835 |
@note Event KUidECamEventVideoCaptureControlSettingsRangeChanged: informs that range of certain camera settings have been changed.
|
sl@0
|
1836 |
Client may call GetRangeAffectedSettingsL(RArray<TUid>& aRangeAffectedSettings) const to get the list of affected camera settings.
|
sl@0
|
1837 |
|
sl@0
|
1838 |
@note Event KUidECamEventVideoCaptureControlSettingsValueChanged: informs that value of certain camera settings have been changed.
|
sl@0
|
1839 |
Client may call GetValueAffectedSettingsL(RArray<TUid>& aValueAffectedSettings) const to get the list of affected camera settings.
|
sl@0
|
1840 |
|
sl@0
|
1841 |
@note Event KUidECamEventVideoCaptureControlSettingsDisabled: informs that certain camera settings have been disabled.
|
sl@0
|
1842 |
Client may call GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const to get the list of affected camera settings.
|
sl@0
|
1843 |
|
sl@0
|
1844 |
@see CCamera::PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer)
|
sl@0
|
1845 |
|
sl@0
|
1846 |
@see ReleaseVideoResource()
|
sl@0
|
1847 |
*/
|
sl@0
|
1848 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters)
|
sl@0
|
1849 |
{
|
sl@0
|
1850 |
iImpl->PrepareVideoCapture(aPrepareVideoParameters);
|
sl@0
|
1851 |
}
|
sl@0
|
1852 |
|
sl@0
|
1853 |
/**
|
sl@0
|
1854 |
Retrieves the camera settings whose range got affected once the desired video settings (frame rate/frame size) are in place.
|
sl@0
|
1855 |
This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsRangeChanged.
|
sl@0
|
1856 |
|
sl@0
|
1857 |
@param aRangeAffectedSettings
|
sl@0
|
1858 |
Retrieves the list of range affected settings
|
sl@0
|
1859 |
|
sl@0
|
1860 |
@leave May leave with any error code.
|
sl@0
|
1861 |
|
sl@0
|
1862 |
@see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
|
sl@0
|
1863 |
*/
|
sl@0
|
1864 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetRangeAffectedSettingsL(RArray<TUid>& aRangeAffectedSettings) const
|
sl@0
|
1865 |
{
|
sl@0
|
1866 |
iImpl->GetRangeAffectedSettingsL(aRangeAffectedSettings);
|
sl@0
|
1867 |
}
|
sl@0
|
1868 |
|
sl@0
|
1869 |
/**
|
sl@0
|
1870 |
Retrieves the camera settings whose value got affected once the desired video settings (frame rate/frame size) are in place.
|
sl@0
|
1871 |
This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsValueChanged.
|
sl@0
|
1872 |
|
sl@0
|
1873 |
@param aValueAffectedSettings
|
sl@0
|
1874 |
Retrieves the list of value affected settings
|
sl@0
|
1875 |
|
sl@0
|
1876 |
@leave May leave with any error code.
|
sl@0
|
1877 |
|
sl@0
|
1878 |
@see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
|
sl@0
|
1879 |
*/
|
sl@0
|
1880 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetValueAffectedSettingsL(RArray<TUid>& aValueAffectedSettings) const
|
sl@0
|
1881 |
{
|
sl@0
|
1882 |
iImpl->GetValueAffectedSettingsL(aValueAffectedSettings);
|
sl@0
|
1883 |
}
|
sl@0
|
1884 |
|
sl@0
|
1885 |
/**
|
sl@0
|
1886 |
Retrieves the camera settings whose value got affected once the desired video settings (frame rate/frame size) are in place.
|
sl@0
|
1887 |
This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsDisabled.
|
sl@0
|
1888 |
|
sl@0
|
1889 |
@param aDisabledSettings
|
sl@0
|
1890 |
Retrieves the list of disabled settings
|
sl@0
|
1891 |
|
sl@0
|
1892 |
@leave May leave with any error code.
|
sl@0
|
1893 |
|
sl@0
|
1894 |
@see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
|
sl@0
|
1895 |
*/
|
sl@0
|
1896 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const
|
sl@0
|
1897 |
{
|
sl@0
|
1898 |
iImpl->GetDisabledSettingsL(aDisabledSettings);
|
sl@0
|
1899 |
}
|
sl@0
|
1900 |
|
sl@0
|
1901 |
/**
|
sl@0
|
1902 |
Frees the video resources which were set up as a result of CCameraVideoCaptureControl::PrepareVideoCapture call.
|
sl@0
|
1903 |
If this methid is called while PrepareVideoCapture call is outstanding, then this will be equivalent to cancelling the
|
sl@0
|
1904 |
PrepareVideoCapture call and release any allocated resources.
|
sl@0
|
1905 |
|
sl@0
|
1906 |
@see PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
|
sl@0
|
1907 |
*/
|
sl@0
|
1908 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::ReleaseVideoResource()
|
sl@0
|
1909 |
{
|
sl@0
|
1910 |
iImpl->ReleaseVideoResource();
|
sl@0
|
1911 |
}
|
sl@0
|
1912 |
|
sl@0
|
1913 |
/**
|
sl@0
|
1914 |
Starts the video capture. This operation gives priority to the low latency aspects.
|
sl@0
|
1915 |
|
sl@0
|
1916 |
Video frames are send to client via MCaptureVideoObserver::VideoBufferReady().
|
sl@0
|
1917 |
|
sl@0
|
1918 |
@leave May leave with any error code.
|
sl@0
|
1919 |
|
sl@0
|
1920 |
@note This method is recommended to be used rather than CCamera::StartVideoCaptureL().
|
sl@0
|
1921 |
*/
|
sl@0
|
1922 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::StartVideoCaptureL()
|
sl@0
|
1923 |
{
|
sl@0
|
1924 |
iImpl->StartVideoCaptureL();
|
sl@0
|
1925 |
}
|
sl@0
|
1926 |
|
sl@0
|
1927 |
/**
|
sl@0
|
1928 |
Stops the video capture. This operation gives priority to the low latency aspects.
|
sl@0
|
1929 |
|
sl@0
|
1930 |
@note This method is recommended to be used rather than CCamera::StopVideoCapture().
|
sl@0
|
1931 |
*/
|
sl@0
|
1932 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::StopVideoCapture()
|
sl@0
|
1933 |
{
|
sl@0
|
1934 |
iImpl->StopVideoCapture();
|
sl@0
|
1935 |
}
|
sl@0
|
1936 |
|
sl@0
|
1937 |
/**
|
sl@0
|
1938 |
Pauses the on-going video capture. MCaptureVideoObserver::VideoBufferReady()
|
sl@0
|
1939 |
callback will not be received by the client until the video capture is resumed.
|
sl@0
|
1940 |
*/
|
sl@0
|
1941 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::PauseVideoCapture()
|
sl@0
|
1942 |
{
|
sl@0
|
1943 |
iImpl->PauseVideoCapture();
|
sl@0
|
1944 |
}
|
sl@0
|
1945 |
|
sl@0
|
1946 |
/**
|
sl@0
|
1947 |
Resumes the on-going video capture. MCaptureVideoObserver::VideoBufferReady()
|
sl@0
|
1948 |
callback will again be received by the client.
|
sl@0
|
1949 |
|
sl@0
|
1950 |
@leave May leave with any error code.
|
sl@0
|
1951 |
*/
|
sl@0
|
1952 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::ResumeVideoCaptureL()
|
sl@0
|
1953 |
{
|
sl@0
|
1954 |
iImpl->ResumeVideoCaptureL();
|
sl@0
|
1955 |
}
|
sl@0
|
1956 |
|
sl@0
|
1957 |
/**
|
sl@0
|
1958 |
Retrieves the fading effect state for video capture.
|
sl@0
|
1959 |
|
sl@0
|
1960 |
@param aFadingEffectState
|
sl@0
|
1961 |
Retrieves the current fading effect state for video capture.
|
sl@0
|
1962 |
|
sl@0
|
1963 |
@leave May leave with any error code.
|
sl@0
|
1964 |
|
sl@0
|
1965 |
@internalTechnology
|
sl@0
|
1966 |
*/
|
sl@0
|
1967 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetFadingEffectStateL(CCamera::CCameraVideoCaptureControl::TFadingEffectState& aFadingEffectState) const
|
sl@0
|
1968 |
{
|
sl@0
|
1969 |
iImpl->GetFadingEffectStateL(aFadingEffectState);
|
sl@0
|
1970 |
}
|
sl@0
|
1971 |
|
sl@0
|
1972 |
/**
|
sl@0
|
1973 |
Sets the fading effect state for video capture.
|
sl@0
|
1974 |
|
sl@0
|
1975 |
@param aFadingEffectState
|
sl@0
|
1976 |
The desired fading effect state for video capture.
|
sl@0
|
1977 |
|
sl@0
|
1978 |
@note Triggers a KUidECamEventVideoCaptureControlFadingEffect event notification.
|
sl@0
|
1979 |
|
sl@0
|
1980 |
@internalTechnology
|
sl@0
|
1981 |
*/
|
sl@0
|
1982 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::SetFadingEffectState(CCamera::CCameraVideoCaptureControl::TFadingEffectState aFadingEffectState)
|
sl@0
|
1983 |
{
|
sl@0
|
1984 |
iImpl->SetFadingEffectState(aFadingEffectState);
|
sl@0
|
1985 |
}
|
sl@0
|
1986 |
|
sl@0
|
1987 |
/**
|
sl@0
|
1988 |
Retrieves the current video capture state.
|
sl@0
|
1989 |
|
sl@0
|
1990 |
@param aVideoCaptureState
|
sl@0
|
1991 |
Retrieves the current video capture state.
|
sl@0
|
1992 |
|
sl@0
|
1993 |
@leave May leave with any error code.
|
sl@0
|
1994 |
*/
|
sl@0
|
1995 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetVideoCaptureStateL(CCamera::CCameraVideoCaptureControl::TVideoCaptureState& aVideoCaptureState) const
|
sl@0
|
1996 |
{
|
sl@0
|
1997 |
iImpl->GetVideoCaptureStateL(aVideoCaptureState);
|
sl@0
|
1998 |
}
|
sl@0
|
1999 |
|
sl@0
|
2000 |
/**
|
sl@0
|
2001 |
Retrieves the various types of video capture supported.
|
sl@0
|
2002 |
@param aSupportedVideoCaptureTypes
|
sl@0
|
2003 |
Retrieves the supported video capture type. The TInt is retrieved as a bit field of supported
|
sl@0
|
2004 |
TVideoCaptureType.
|
sl@0
|
2005 |
|
sl@0
|
2006 |
@leave May leave with any error code.
|
sl@0
|
2007 |
*/
|
sl@0
|
2008 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetVideoCaptureSupportInfoL(TInt& aSupportedVideoCaptureTypes) const
|
sl@0
|
2009 |
{
|
sl@0
|
2010 |
iImpl->GetVideoCaptureSupportInfoL(aSupportedVideoCaptureTypes);
|
sl@0
|
2011 |
}
|
sl@0
|
2012 |
|
sl@0
|
2013 |
/*
|
sl@0
|
2014 |
Retrieves the current prepare video parameters.
|
sl@0
|
2015 |
|
sl@0
|
2016 |
@param aPrepareVideoParameters
|
sl@0
|
2017 |
Retrieves the current prepare video parameters.
|
sl@0
|
2018 |
|
sl@0
|
2019 |
@leave May leave with any error code.
|
sl@0
|
2020 |
*/
|
sl@0
|
2021 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::GetPrepareVideoParametersL(CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters) const
|
sl@0
|
2022 |
{
|
sl@0
|
2023 |
iImpl->GetPrepareVideoParametersL(aPrepareVideoParameters);
|
sl@0
|
2024 |
}
|
sl@0
|
2025 |
|
sl@0
|
2026 |
/**
|
sl@0
|
2027 |
Constructor for the TPrepareVideoParameters class.
|
sl@0
|
2028 |
Sets the size and version of this class.
|
sl@0
|
2029 |
*/
|
sl@0
|
2030 |
EXPORT_C CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::TPrepareVideoParameters()
|
sl@0
|
2031 |
{
|
sl@0
|
2032 |
iSize = sizeof(CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters);
|
sl@0
|
2033 |
iVersion = KECamPrepareVideoParametersCurrentVersion;
|
sl@0
|
2034 |
}
|
sl@0
|
2035 |
|
sl@0
|
2036 |
/**
|
sl@0
|
2037 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
2038 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
2039 |
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
|
2040 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
2041 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
2042 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
2043 |
|
sl@0
|
2044 |
@return The size of the class.
|
sl@0
|
2045 |
|
sl@0
|
2046 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
2047 |
*/
|
sl@0
|
2048 |
EXPORT_C TUint CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::Size() const
|
sl@0
|
2049 |
{
|
sl@0
|
2050 |
return iSize;
|
sl@0
|
2051 |
}
|
sl@0
|
2052 |
|
sl@0
|
2053 |
/**
|
sl@0
|
2054 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
2055 |
members get used at a later stage.
|
sl@0
|
2056 |
|
sl@0
|
2057 |
@return The version of this class.
|
sl@0
|
2058 |
|
sl@0
|
2059 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
2060 |
*/
|
sl@0
|
2061 |
EXPORT_C TUint CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::Version() const
|
sl@0
|
2062 |
{
|
sl@0
|
2063 |
return iVersion;
|
sl@0
|
2064 |
}
|
sl@0
|
2065 |
|
sl@0
|
2066 |
/**
|
sl@0
|
2067 |
Indicates whether or not the embedded still image capture state is enabled.
|
sl@0
|
2068 |
|
sl@0
|
2069 |
@return Whether or not the embedded still image capture state is enabled.
|
sl@0
|
2070 |
|
sl@0
|
2071 |
@see CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::iIsEmbeddedStillCaptureEnabled
|
sl@0
|
2072 |
*/
|
sl@0
|
2073 |
EXPORT_C TBool CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::IsEmbeddedStillCaptureEnabled() const
|
sl@0
|
2074 |
{
|
sl@0
|
2075 |
if (iIsEmbeddedStillCaptureEnabled)
|
sl@0
|
2076 |
{
|
sl@0
|
2077 |
return ETrue;
|
sl@0
|
2078 |
}
|
sl@0
|
2079 |
else
|
sl@0
|
2080 |
{
|
sl@0
|
2081 |
return EFalse;
|
sl@0
|
2082 |
}
|
sl@0
|
2083 |
}
|
sl@0
|
2084 |
|
sl@0
|
2085 |
/**
|
sl@0
|
2086 |
Sets the state to inform whether or not the embedded still image capture state is enabled.
|
sl@0
|
2087 |
|
sl@0
|
2088 |
@param aIsEmbeddedStillCaptureEnabled
|
sl@0
|
2089 |
ETrue implies embedded still capture state is enabled.
|
sl@0
|
2090 |
EFalse implies embedded still capture state is disabled.
|
sl@0
|
2091 |
|
sl@0
|
2092 |
@see CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::iIsEmbeddedStillCaptureEnabled
|
sl@0
|
2093 |
*/
|
sl@0
|
2094 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::SetEmbeddedStillCaptureState(TBool aIsEmbeddedStillCaptureEnabled)
|
sl@0
|
2095 |
{
|
sl@0
|
2096 |
iIsEmbeddedStillCaptureEnabled = static_cast<TUint>(aIsEmbeddedStillCaptureEnabled);
|
sl@0
|
2097 |
}
|
sl@0
|
2098 |
|
sl@0
|
2099 |
/**
|
sl@0
|
2100 |
Retrieves the current video capture type used.
|
sl@0
|
2101 |
|
sl@0
|
2102 |
@param aVideoCaptureType
|
sl@0
|
2103 |
Retrieves the current video capture type.
|
sl@0
|
2104 |
|
sl@0
|
2105 |
@see CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::iVideoCaptureType
|
sl@0
|
2106 |
*/
|
sl@0
|
2107 |
EXPORT_C CCamera::CCameraVideoCaptureControl::TVideoCaptureType CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::VideoCaptureType() const
|
sl@0
|
2108 |
{
|
sl@0
|
2109 |
switch(iVideoCaptureType)
|
sl@0
|
2110 |
{
|
sl@0
|
2111 |
case KECamVideoCaptureBit0:
|
sl@0
|
2112 |
{
|
sl@0
|
2113 |
return CCamera::CCameraVideoCaptureControl::EVideoCaptureNotSupported;
|
sl@0
|
2114 |
}
|
sl@0
|
2115 |
case KECamClientVideoCaptureBit1:
|
sl@0
|
2116 |
{
|
sl@0
|
2117 |
return CCamera::CCameraVideoCaptureControl::EClientVideoCapture;
|
sl@0
|
2118 |
}
|
sl@0
|
2119 |
case KECamDirectVideoCaptureBit2:
|
sl@0
|
2120 |
{
|
sl@0
|
2121 |
return CCamera::CCameraVideoCaptureControl::EDirectVideoCapture;
|
sl@0
|
2122 |
}
|
sl@0
|
2123 |
default:
|
sl@0
|
2124 |
{
|
sl@0
|
2125 |
return CCamera::CCameraVideoCaptureControl::EVideoCaptureNotSupported;
|
sl@0
|
2126 |
}
|
sl@0
|
2127 |
}
|
sl@0
|
2128 |
}
|
sl@0
|
2129 |
|
sl@0
|
2130 |
/**
|
sl@0
|
2131 |
Sets the desired video capture type.
|
sl@0
|
2132 |
|
sl@0
|
2133 |
@param aVideoCaptureType
|
sl@0
|
2134 |
The desired video capture type.
|
sl@0
|
2135 |
|
sl@0
|
2136 |
@see CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::iVideoCaptureType
|
sl@0
|
2137 |
*/
|
sl@0
|
2138 |
EXPORT_C void CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters::SetVideoCaptureType(CCamera::CCameraVideoCaptureControl::TVideoCaptureType aVideoCaptureType)
|
sl@0
|
2139 |
{
|
sl@0
|
2140 |
iVideoCaptureType = static_cast<TUint>(aVideoCaptureType);
|
sl@0
|
2141 |
}
|
sl@0
|
2142 |
|
sl@0
|
2143 |
/**
|
sl@0
|
2144 |
Retrieves the supported YUV conversion coefficient in case of video.
|
sl@0
|
2145 |
|
sl@0
|
2146 |
@param aSupportedConversionCoefficients
|
sl@0
|
2147 |
A bit field which retrieves the supported YUV conversion coefficient.
|
sl@0
|
2148 |
YUV conversion coefficients have been defined as TYuvCoefficients
|
sl@0
|
2149 |
|
sl@0
|
2150 |
@leave May leave with any error code.
|
sl@0
|
2151 |
*/
|
sl@0
|
2152 |
void CCamera::CCameraVideoCaptureControl::GetSupportedConversionCoefficientsL(TUint& /*aSupportedConversionCoefficients*/) const
|
sl@0
|
2153 |
{
|
sl@0
|
2154 |
User::Leave(KErrNotSupported);
|
sl@0
|
2155 |
}
|
sl@0
|
2156 |
|
sl@0
|
2157 |
/**
|
sl@0
|
2158 |
Retrieves the currently used YUV conversion coefficients.
|
sl@0
|
2159 |
|
sl@0
|
2160 |
@param aConversionCoefficients
|
sl@0
|
2161 |
Currently used TYuvCoefficients
|
sl@0
|
2162 |
|
sl@0
|
2163 |
@leave May leave with any error code.
|
sl@0
|
2164 |
*/
|
sl@0
|
2165 |
void CCamera::CCameraVideoCaptureControl::GetConversionCoefficientL(TYuvCoefficients& /*aConversionCoefficients*/) const
|
sl@0
|
2166 |
{
|
sl@0
|
2167 |
User::Leave(KErrNotSupported);
|
sl@0
|
2168 |
}
|
sl@0
|
2169 |
|
sl@0
|
2170 |
/**
|
sl@0
|
2171 |
Asynchronous method which sets the desired YUV conversion coefficients.
|
sl@0
|
2172 |
|
sl@0
|
2173 |
@param aConversionCoefficients
|
sl@0
|
2174 |
The desired TYuvCoefficients
|
sl@0
|
2175 |
|
sl@0
|
2176 |
@note Event KUidECamEventVideoCaptureControlConversionCoefficient is used to notify clients about setting of desired YUV
|
sl@0
|
2177 |
conversion coefficients.
|
sl@0
|
2178 |
*/
|
sl@0
|
2179 |
void CCamera::CCameraVideoCaptureControl::SetConversionCoefficient(TYuvCoefficients /*aConversionCoefficients*/)
|
sl@0
|
2180 |
{
|
sl@0
|
2181 |
return;
|
sl@0
|
2182 |
}
|