os/mm/imagingandcamerafws/camerafw/Include/ECam/ecamcapturecontrolintf.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/ECam/ecamcapturecontrolintf.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,950 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @publishedPartner
    1.22 + @released
    1.23 +*/
    1.24 +
    1.25 +#ifndef  ECAMCAPTURECONTROLINTF_H
    1.26 +#define  ECAMCAPTURECONTROLINTF_H
    1.27 +
    1.28 +#include <ecamcapturecontrol.h>
    1.29 +#include <ecam/ecamadvsettingsintfuids.hrh>
    1.30 +
    1.31 +class MImplementationFactory;
    1.32 +
    1.33 +/** 
    1.34 +This is the UID which is used to obtain the interface MCameraPreImageCaptureControl, via the 
    1.35 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
    1.36 + 
    1.37 +@publishedPartner
    1.38 +@prototype
    1.39 +*/   
    1.40 +static const TUid KECamMCameraPreImageCaptureControlUid		=  {KECamMCameraPreImageCaptureControlUidValue};
    1.41 +
    1.42 +/** 
    1.43 +This is the UID which is used to obtain the interface MCameraImageCapture, via the 
    1.44 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
    1.45 + 
    1.46 +@publishedPartner
    1.47 +@prototype
    1.48 +*/   
    1.49 +static const TUid KECamMCameraImageCaptureUid		=  {KECamMCameraImageCaptureUidValue};
    1.50 +
    1.51 +/** 
    1.52 +This is the UID which is used to obtain the interface MCameraPostImageCaptureControl, via the 
    1.53 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
    1.54 + 
    1.55 +@publishedPartner
    1.56 +@prototype 
    1.57 +*/   
    1.58 +static const TUid KECamMCameraPostImageCaptureControlUid	=  {KECamMCameraPostImageCaptureControlUidValue};
    1.59 +
    1.60 +/** 
    1.61 +This is the UID which is used to obtain the interface MCameraVideoCaptureControl, via the 
    1.62 +CCamera::CustomInterface() call, which provides implementation of the M-class interface. 
    1.63 +@publishedPartner
    1.64 +@prototype
    1.65 +*/   
    1.66 +static const TUid KECamMCameraVideoCaptureControlUid 	=  {KECamMCameraVideoCaptureControlUidValue};
    1.67 +
    1.68 +/** 
    1.69 +Mixin class for implementation by providers of the PreImageCaptureControl Camera Extension API.
    1.70 +PreImageCaptureControl class exposes an API for controlling advanced still image related settings and control prior
    1.71 +to capturing the images.
    1.72 +
    1.73 +@publishedPartner
    1.74 +@prototype 
    1.75 +*/	
    1.76 +class MCameraPreImageCaptureControl
    1.77 +	{
    1.78 +	
    1.79 +public:
    1.80 +	
    1.81 +	/** 
    1.82 +	Releases the interface. 
    1.83 +	*/
    1.84 +	virtual void Release()=0;
    1.85 +	
    1.86 +	/**
    1.87 +	The observer for the pre image capture control is passed to the implementation for passing callbacks on it.
    1.88 +	
    1.89 +	@param  aPreImageCaptureControlObserver
    1.90 +			The reference to the pre image capture control observer.
    1.91 +	*/
    1.92 +	virtual void SetPreImageCaptureControlObserver(MPreImageCaptureControlObserver& aPreImageCaptureControlObserver)=0;
    1.93 +	
    1.94 +	/**
    1.95 +	Retrieves information regarding the direct snapshot feature support. Direct Snapshot, if supported, can be created
    1.96 +	out of version2 direct viewfinder object only.
    1.97 +
    1.98 +	@param  aDirectSnapshotSupportInfo
    1.99 +			This is a bit field providing supported direct snapshot of type TDirectSnapshotType
   1.100 +
   1.101 +	@leave  May leave with any error code.
   1.102 +	*/
   1.103 +	virtual void GetDirectSnapshotSupportInfoL(TUint& aDirectSnapshotSupportInfo) const=0;
   1.104 +	
   1.105 +	/**
   1.106 +	Retrieves the settings supported for embedded still captures. Possibilty exists that not all the settings supported for
   1.107 +	normal still image captures are supported for embedded still captures as well.
   1.108 +
   1.109 +	@param  aSupportedEmbeddedStillCaptureSettings
   1.110 +			Array of TUid which retrieves the supported embedded still captures. Empty list indicated that no settings are
   1.111 +			supported for embedded still captures.
   1.112 +			
   1.113 +	@leave  May leave with any error code.
   1.114 +	*/
   1.115 +	virtual void GetSupportedEmbeddedStillCaptureSettingsL(RArray<TUid>& aSupportedEmbeddedStillCaptureSettings) const=0;
   1.116 +	
   1.117 +	/**
   1.118 +	Retrieves information regarding the supported direct saving state. If used, still images are saved in files rather than 
   1.119 +	providing clients the MCameraImageBuffer. Direct saving to file will continue even if the client application gets closed
   1.120 +	for any reasons.
   1.121 +
   1.122 +	@param  aSupportedDirectSavingType
   1.123 +			Retrieves the enum specifying supported TDirectSavingType.
   1.124 +			If EDirectSavingNotUsed, direct saving not supported. Images will be received in buffer MCameraImageBuffer.
   1.125 +			
   1.126 +			If EDirectSavingHighResolutionFileOnly, direct saving to file is supported. But no cut down version of the image 
   1.127 +			will be saved to file. Callback used is MCaptureImageObserver::ImageDirectSavingCompleted().
   1.128 +			
   1.129 +			If EDirectSavingWithLowerResolutionFile, Direct saving to file is supported. Also, a cut down version of the image 
   1.130 +			will be saved to another specified file. Callbacks used are MCaptureImageObserver::ImageDirectSavingCompleted()
   1.131 +			for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() for lower resolution image.
   1.132 +
   1.133 +	@leave  May leave with any error code.	
   1.134 +	*/
   1.135 +	virtual void GetSupportedDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType& aSupportedDirectSavingType) const=0;
   1.136 +
   1.137 +	/**
   1.138 +	Provides the base name for file used to save images. If there are sequential images, files will be created by 
   1.139 +	implementation with names appearing as base name and appended by increasing integers which would start from 
   1.140 +	aStartingSequenceNumber. This is used for the original image only, but not for the cut down version of the original
   1.141 +	image.
   1.142 +
   1.143 +	@param  aFilename
   1.144 +			A const TDesC8&: Base name for files which ECam implementation needs to create in order to collect every sequential
   1.145 +			image.
   1.146 +			
   1.147 +	@param  aStartingSequenceNumber
   1.148 +			The starting sequence number which will be appended to the base name 'aFilename'. The sequence number will keep
   1.149 +			on increasing for every individual still image capture.
   1.150 +			
   1.151 +	@leave  May leave with any error code.
   1.152 +
   1.153 +	@note   It is upto the implementation how many digits it uses for sequence number. Accordingly, padding will be done with 
   1.154 +			zeroes.
   1.155 +	*/
   1.156 +	virtual void SetSequentialImageFilenameL(const TDesC8& aFilename, TInt aStartingSequenceNumber)=0;
   1.157 +	
   1.158 +	/**
   1.159 +	Provides the base name for file used to save cut down version of the original images. If there are sequential images, 
   1.160 +	files will be created by implementation with names appearing as base name and appended by increasing integers which would 
   1.161 +	start from aStartingSequenceNumber. This is used for the cut down version of the original image.
   1.162 +
   1.163 +	@param  aLowerResolutionFilename
   1.164 +			A const TDesC8&: Base name for files which ECam implementation needs to create in order to collect the cut down version
   1.165 +			of every sequential image.
   1.166 +			
   1.167 +	@param  aStartingSequenceNumber
   1.168 +			The starting sequence number which will be appended to the base name 'aFilename'. The sequence number will keep
   1.169 +			on increasing for every individual still image capture.
   1.170 +			
   1.171 +	@leave  May leave with any error code.
   1.172 +
   1.173 +	@note   It is upto the implementation how many digits it uses for sequence number. Accordingly, padding will be done with 
   1.174 +			zeroes.
   1.175 +	*/
   1.176 +	virtual void SetLowerResolutionSequentialImageFilenameL(const TDesC8& aLowerResolutionFilename, TInt aStartingSequenceNumber)=0;
   1.177 +
   1.178 +	/**
   1.179 +	Retrieves the type of direct saving currently used. This will be represented as a direct saving state as given by 
   1.180 +	TDirectSavingType. 
   1.181 +
   1.182 +	Whether or not the direct saving option is used, client will receive the MCaptureImageObserver::ImageCaptureComplete() 
   1.183 +	callback to mark the completion of the image capture operation.
   1.184 +
   1.185 +	@param  aDirectSavingType
   1.186 +			Current type of the direct saving. 
   1.187 +			
   1.188 +			If EDirectSavingNotUsed, direct saving is not used. Images will be received in buffer MCameraImageBuffer through
   1.189 +			callback MCaptureImageObserver::ImageBufferReady().
   1.190 +			
   1.191 +			If EDirectSavingHighResolutionFileOnly, direct saving to file option is currently used. But no cut down version of
   1.192 +			the image will be saved to file. Callback used is MCaptureImageObserver::ImageDirectSavingCompleted().
   1.193 +			
   1.194 +			If EDirectSavingWithLowerResolutionFile, apart from direct saving to file option for the actual image, a cut down 
   1.195 +			version of the image will be saved to another specified file. Callbacks used are MCaptureImageObserver::
   1.196 +			ImageDirectSavingCompleted() for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted() 
   1.197 +			for lower resolution image.
   1.198 +			
   1.199 +	@leave  May leave with any error code.
   1.200 +	
   1.201 +	@note   Direct saving to file will continue even if the client application gets closed for any reasons.
   1.202 +	*/
   1.203 +	virtual void GetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType& aDirectSavingType) const=0;
   1.204 +
   1.205 +	/**
   1.206 +	Instructs the ECam implementation to use the desired type of direct saving option as specifed by its state.
   1.207 +
   1.208 +	Whether or not the direct saving option is used, client will receive the MCaptureImageObserver::ImageCaptureComplete() 
   1.209 +	callback to mark the completion of the image capture operation.
   1.210 +
   1.211 +	@param  aDirectSavingType
   1.212 +			The desired type of the direct saving. 
   1.213 +			
   1.214 +			If EDirectSavingNotUsed, direct saving will not be used. Images will be received in buffer MCameraImageBuffer 
   1.215 +			through	callback MCaptureImageObserver::ImageBufferReady().
   1.216 +			
   1.217 +			If EDirectSavingHighResolutionFileOnly, direct saving to file option will be used. But no cut down version of
   1.218 +			the image will be saved to file. Callback to be used is MCaptureImageObserver::ImageDirectSavingCompleted().
   1.219 +			
   1.220 +			If EDirectSavingWithLowerResolutionFile, apart from direct saving to file option for the actual image, a cut down 
   1.221 +			version of the image will be saved to another specified file. Callbacks to be used are MCaptureImageObserver::
   1.222 +			ImageDirectSavingCompleted() for actual image and MCaptureImageObserver::CutDownImageDirectSavingCompleted()
   1.223 +			for lower resolution image.
   1.224 +			
   1.225 +	@leave  May leave with any error code.
   1.226 +
   1.227 +	@note   Clients need to provide the filename before capturing still images under direct saving option. Callback 
   1.228 +			MCaptureImageObserver::ImageDirectSavingCompleted() may provide error KErrNotReady if filenames are not 
   1.229 +			provided before images are captured for direct saving. Similarly, if cut down version of image is also to be 
   1.230 +			saved to file, MCaptureImageObserver::CutDownImageDirectSavingCompleted() may provide error KErrNotReady if 
   1.231 +			filenames are not provided before hand.
   1.232 +			
   1.233 +	@note   Direct saving to file will continue even if the client application gets closed for any reasons.
   1.234 +	*/
   1.235 +	virtual void SetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType aDirectSavingType)=0;
   1.236 +    
   1.237 + 	/**
   1.238 +	Retrieves whether the camera device is capable of providing capture event notification to the client. Client may take
   1.239 +	the responsibility of playing the capture sound after receiving the notification. 
   1.240 +
   1.241 +	@param  aSupportedDriveModes
   1.242 +			A reference to bit-field of TUint which indicates the drive modes in which the capture event notification is
   1.243 +			supported. If aSupportedDriveModes =0, capture event notification is not supported.
   1.244 +			
   1.245 +	@note   If capture event notification is supported, ECam implementation will use KUidECamEventImageCaptureEvent to notify 
   1.246 +			clients that the image has been exposed to the camera sensor. Clients may play capture sound if they desire to do so.
   1.247 +
   1.248 +	@leave  May leave with any error code.
   1.249 +	
   1.250 +	@see    CCamera::CCameraAdvancedSettings::TDriveMode	
   1.251 +	*/
   1.252 +	virtual void GetCaptureEventSupportInfoL(TUint& aSupportedDriveModes) const=0;
   1.253 +	
   1.254 +	/**
   1.255 +	Retrieves the supported image formats for a given resolution.
   1.256 +	
   1.257 +	@param  aImageFormatsSupported
   1.258 +			A bit field which retrieves the supported image formats for a given resolution.
   1.259 +			Formats have been defined as CCamera::TFormat
   1.260 +			
   1.261 +	@param  aSize
   1.262 +			The resolution (or size) for which the total number of supported image formats have to be retrieved.
   1.263 +	
   1.264 +	@leave  May leave with any error code.
   1.265 +	*/
   1.266 +	virtual void GetImageFormatsSupportedL(TUint& aImageFormatsSupported, const TSize& aSize) const=0;
   1.267 +	
   1.268 +	/**
   1.269 +	Retrieves the supported pixel aspect ratio for a given resolution in case of still image.
   1.270 +	
   1.271 +	@param  aPixelAspectsSupported
   1.272 +			A bit field which retrieves the supported pixel aspect ratio for a given resolution.
   1.273 +			Pixel aspect ratio have been defined as CCamera::CCameraAdvancedSettings::TPixelAspectRatio
   1.274 +	
   1.275 +	@param  aImageFormat
   1.276 +			The image format for which the supported pixel aspect ratio have to be retrieved.
   1.277 +
   1.278 +	@param  aSize
   1.279 +			The resolution (or size) for which the supported pixel aspect ratio have to be retrieved.
   1.280 +	
   1.281 +	@leave  May leave with any error code.
   1.282 +	*/
   1.283 +	virtual void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aImageFormat, const TSize& aSize) const=0;
   1.284 +	
   1.285 +	/**
   1.286 +	Performs setup and allocation of memory for image capture operation. Implementation creates a new CCameraImageCapture*
   1.287 +	object which reflects the prepare image parameters passed by the client. The callback MPreImageCaptureControlObserver::
   1.288 +	PrepareImageComplete() passes the ownership of the CCameraImageCapture* object to the client.
   1.289 +
   1.290 +	This needs to be called every time client wishes to change prepare image parameters or if the client wishes to create
   1.291 +	a new CCameraImageCapture* object. 
   1.292 +
   1.293 +	@param  aPrepareImageParameters 
   1.294 +	        The desired image parameters to be used for capturing still images using the CCameraImageCapture instance
   1.295 +	        which would be passed by the implementation.
   1.296 +	        
   1.297 +	@param  aCaptureImageObserver
   1.298 +			The Capture image observer which is needed by the implementation in order to pass it to the 
   1.299 +			CCameraImageCapture while creating it.
   1.300 +
   1.301 +	@note 	Next PrepareImageCapture can be called only after receiving the notification KUidECamEventReadyForNextPrepare.
   1.302 +
   1.303 +	@note   Implementation will call CCameraImageCapture::CreateL(CCamera& aCamera, MCaptureImageObserver& 
   1.304 +			aCaptureImageObserver) method and pass the CCameraImageCapture* to the client through the 
   1.305 +			MPreImageCaptureControlObserver::PrepareImageComplete() callback.
   1.306 +
   1.307 +	@note	If drive mode is EDriveModeTimeNudgeCapture the ECam implementation will immediately begin capturing images after
   1.308 +			creating a new CCameraImageCapture object. Once the client initiates image capture, the total amount of images
   1.309 +			requested by the client	(specified by the client in	TDriveModeDependentAttributes) will be returned to the client
   1.310 +			(via MCaptureImageObserver::ImageBufferReady())	or saved to file. The implementation should not create another
   1.311 +			instance of CCameraImageCapture whilst using this drive mode until the first instance is destroyed by the client.
   1.312 +
   1.313 +	@see 	CCamera::PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex)
   1.314 +	*/
   1.315 +	virtual void PrepareImageCapture(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& 
   1.316 +											aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver)=0;
   1.317 +		
   1.318 +	/**
   1.319 +	Informs whether or not the setting of maximum memory size when encoding to the current format is supported.
   1.320 +
   1.321 +	@param  aIsImageMaxMemorySizeSettingSupported
   1.322 +			ETrue indicates that setting of maximum memory size is supported.
   1.323 +			EFalse indicates that setting of maximum memory size is not supported.
   1.324 +
   1.325 +	@leave  May leave with any error code.
   1.326 +	*/
   1.327 +	virtual void GetImageMaxMemorySizeSettingSupportInfoL(TBool& aIsImageMaxMemorySizeSettingSupported) const=0;
   1.328 +
   1.329 +	/**
   1.330 +	Get the maximum memory size in kilo bytes when encoding to the current format.
   1.331 +	
   1.332 +	@param  aMemorySize
   1.333 +			Retrieves the maximum memory size in kilo bytes.
   1.334 +	
   1.335 +	@note   In case of JPEG, the maximum memory size will take preference over JPEG quality if the maximum memory size is 
   1.336 +			not sufficient to achieve the desired quality. Refer CCamera::JpegQuality()
   1.337 +			
   1.338 +	@leave  May leave with any error code.
   1.339 +	*/
   1.340 +	virtual void GetImageMaxMemorySizeL(TUint& aMemorySize) const=0;
   1.341 +
   1.342 +	/**
   1.343 +	Retrieves the supported processing options.
   1.344 +
   1.345 +	@param  aEcamProcessingOptionsSupported
   1.346 +			Bitfield containing the available processing options.
   1.347 +
   1.348 +	@leave  May leave with error code.
   1.349 +	*/
   1.350 +	virtual void GetSupportedProcessingOptionsL(TUint& aEcamProcessingOptionsSupported) const=0;
   1.351 +	};
   1.352 +
   1.353 +/** 
   1.354 +Mixin class for implementation by providers of the ImageCapture Camera Extension API. 
   1.355 +CameraImageCapture class exposes an API for capturing the image and controlling the overall capture.
   1.356 +
   1.357 +This class also provides concrete implementation of API exposed by CCameraPostImageCaptureControl.
   1.358 +CameraPostImageCaptureControl class exposes an API for retrieving the image data from individual images (in case 
   1.359 +continuous drive mode is used for capturing the images) and also to apply control on the captured images individually.
   1.360 +
   1.361 +@publishedPartner
   1.362 +@prototype 
   1.363 +*/	
   1.364 +class MCameraImageCapture
   1.365 +	{
   1.366 +	
   1.367 +public:
   1.368 +	
   1.369 +	/** 
   1.370 +	Releases the interface. 
   1.371 +	
   1.372 +	@param  aCameraImageCapture
   1.373 +			The pointer to the image capture class object which would be destroyed by the client.
   1.374 +	*/
   1.375 +	virtual void Release(CCamera::CCameraImageCapture* aCameraImageCapture)=0;
   1.376 +	
   1.377 +	/**
   1.378 +	Retrieves the concrete factory handle for the histogram implementation in order to use it specifically for a
   1.379 +	specific still image capture.
   1.380 +		   
   1.381 +	@param  aImplFactoryPtr
   1.382 +		    The concrete factory handle for the histogram implementation specific to the still image capture.
   1.383 +		   
   1.384 +	@leave  May leave with any error code.
   1.385 +	*/
   1.386 +	virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.387 +	
   1.388 +	/**
   1.389 +	Retrieves the concrete factory handle for the snapshot implementation in order to 
   1.390 +	use it specifically for a specific still image capture.
   1.391 +		   
   1.392 +	@param  aImplFactoryPtr
   1.393 +		    The concrete factory handle for the snapshot implementation specific to the still image capture.
   1.394 +		   
   1.395 +	@leave  May leave with any error code.
   1.396 +	*/
   1.397 +	virtual void GetSnapshotImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.398 +	
   1.399 +	/**
   1.400 +	Retrieves the concrete factory handle for the image processing implementation in order to use it specifically for 
   1.401 +	a specific still image capture.
   1.402 +		   
   1.403 +	@param  aImplFactoryPtr
   1.404 +		    The concrete factory handle for the image processing implementation specific to the still image capture.
   1.405 +		   
   1.406 +	@leave  May leave with any error code.
   1.407 +	*/
   1.408 +	virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.409 +	
   1.410 +	/**
   1.411 +	The observer for the image capture is passed to the implementation for passing callbacks on it.
   1.412 +	
   1.413 +	@param  aCaptureImageObserver
   1.414 +			The reference to the capture image observer.
   1.415 +	*/
   1.416 +	virtual void SetCaptureImageObserver(MCaptureImageObserver& aCaptureImageObserver)=0;	
   1.417 +	
   1.418 +	/**
   1.419 +	Retrieves the prepare image parameters tied with this image capture class object.
   1.420 +
   1.421 +	@param aPrepareImageParameters
   1.422 +		   TPrepareImageParameters tied with this image capture class object.
   1.423 +		   
   1.424 +	@leave May leave with any error code
   1.425 +	*/
   1.426 +	virtual void GetPrepareImageParametersL(CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters) const=0;
   1.427 +	
   1.428 +	/**
   1.429 +	The prepare image parameters needed to capture images using the particular capture image class object.
   1.430 +	
   1.431 +	@param aPrepareImageParameters
   1.432 +		   The prepare image parameters used to capture images.
   1.433 +	*/
   1.434 +	virtual void SetPrepareImageParameters(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters)=0;
   1.435 +		
   1.436 +	/**
   1.437 +	Provides the interface pointers for the concrete implementation of CCameraPostImageCaptureControl.
   1.438 +	Every time this method is called, a newly created interface is provided since it represents the individual image.
   1.439 +	The ID maps the individual image with the CCameraPostImageCaptureControl instance and may also be stored by the 
   1.440 +	concrete implementation of CCameraPostImageCaptureControl.	
   1.441 +	
   1.442 +	@param  aInterface
   1.443 +			The uid representing the interface required.
   1.444 +	
   1.445 +	@param  aPostCaptureControlId
   1.446 +			The ID which maps the individual image with the CCameraPostImageCaptureControl object. This may be stored
   1.447 +			by the concrete implementation of CCameraPostImageCaptureControl.
   1.448 +			
   1.449 +	@return Interface pointer. 
   1.450 +	
   1.451 +	@note   It is this implementation which creates/owns CCameraPostImageCaptureControl class object after receiving image
   1.452 +			capture	requests by the client. Implementation may store all such mappings between aPostCaptureControlId and 
   1.453 +			CCameraPostImageCaptureControl* for a particular instance of CCameraImageCapture. 
   1.454 +	*/
   1.455 +	virtual TAny* CreatePostImageCaptureControlImpl(TUid aInterface, TPostCaptureControlId aPostCaptureControlId)=0;
   1.456 +
   1.457 +	/**
   1.458 +	Performant image capture. This postpones the processing options involved with current image captured in order to 
   1.459 +	capture/prepare for next images. 
   1.460 +	
   1.461 +	Previously created CCameraPostImageCaptureControl objects for this CCameraImageCapture object will become unavailable 
   1.462 +	after this call.
   1.463 +
   1.464 +	@param  aCameraImageCapture
   1.465 +			Pointer to aCameraImageCapture. This will be used by the implementation in order to pass in callbacks and to
   1.466 +			create CCameraPostImageCaptureControl object for every image and pass it to the client. Implementation is not
   1.467 +			supposed to not destroy this object.
   1.468 +
   1.469 +	@note   Further images (either still or video) can be captured only after receiving the notification 
   1.470 +			KUidECamEventReadyForNextCapture. Current image may be outstanding in order to undergo any processing options.
   1.471 +
   1.472 +	@note   Callback MCaptureImageObserver::ImageCaptureComplete() informs the client that the image capture operation has 
   1.473 +			been completed. The CCameraImageCapture& can be further used for next image captures.
   1.474 +			In case of continuous drive modes, this callback will be received by the client only once in order to provide the 
   1.475 +			result of the whole image capture operation. 
   1.476 +			
   1.477 +	@note   Callback MCaptureImageObserver::ImageBufferReady() provides client the link to CCameraPostImageCaptureControl& 
   1.478 +			which helps retrieving the image buffer. In case of continuous drive modes, this callback will be received by the
   1.479 +			client for every individual image. In case of single shots, this will be received by the client only once in 
   1.480 +			order to retrieve the image buffer.
   1.481 +	*/	
   1.482 +	virtual void CaptureImage(CCamera::CCameraImageCapture* aCameraImageCapture)=0;
   1.483 +	
   1.484 +	/**
   1.485 +	Cancels the outstanding Capture Image operation. This will also cancel any outstanding processing options associated
   1.486 +	with the concerned Capture Image operation. This method is synchronous. Hence, no callback shall be issued for the 
   1.487 +	concerned capture image operation.
   1.488 +	*/
   1.489 +	virtual void CancelCaptureImage()=0;
   1.490 +	
   1.491 +	/**
   1.492 +	Retrieves the number of images exposed to sensor with respect to a specific image capture command. Any Processing
   1.493 +	options associated with these images may be pending.
   1.494 +
   1.495 +	@param  aNumImagesExposed
   1.496 +			Retrieves the number of images exposed to sensor till now. For single shot type of drive modes, this value will
   1.497 +			be one after the image gets exposed to sensor. For multiple shot type of drive modes, this value will be the 
   1.498 +			number of images exposed till now.
   1.499 +			
   1.500 +	@note   May leave with any error code.
   1.501 +	*/
   1.502 +	virtual void GetNumImagesExposedL(TUint& aNumImagesExposed) const=0;
   1.503 +
   1.504 +	/**
   1.505 +	Retrieves the total number of images which is supposed to be captured with respect to a specific image capture command. 
   1.506 +
   1.507 +	@param  aNumTotalImages
   1.508 +			Retrieves the total number of images supposed to be captured. For single shot type of drive modes, this value 
   1.509 +			will be	always be one. For multiple shot type of drive modes, this value will be greater than one.
   1.510 +			
   1.511 +	@note   May leave with any error code.
   1.512 +	*/
   1.513 +	virtual void GetNumTotalImagesL(TUint& aNumTotalImages) const=0;
   1.514 +
   1.515 +	/**
   1.516 +	Retrieves the post capture control handle based on the ID passed to it. Client may use this handle for post capture 
   1.517 +	operations of the image identified by the ID. The ID is received by the clients through MCaptureImageObserver callbacks.
   1.518 +
   1.519 +	@param  aPostCaptureControlHandle
   1.520 +			Retrieves pointer to the post capture control class object.
   1.521 +			
   1.522 +	@param  aPostCaptureControlId
   1.523 +			The ID used to retrieve the post capture control handle of the captured image.
   1.524 +			
   1.525 +	@note   May leave with any error code.
   1.526 +	
   1.527 +	@note   It is this implementation which creates/owns CCameraPostImageCaptureControl class object after receiving image
   1.528 +			capture	requests by the client. Implementation may store all such mappings between aPostCaptureControlId and 
   1.529 +			CCameraPostImageCaptureControl* for a particular instance of CCameraImageCapture. 
   1.530 +	*/	
   1.531 +	virtual void GetPostCaptureControlHandleL(CCamera::CCameraPostImageCaptureControl*& aPostCaptureControlHandle, 
   1.532 +																TPostCaptureControlId aPostCaptureControlId) const=0;
   1.533 +	/**
   1.534 +	Prioritises the Capture Image operation. This implies that the processing options associated with the concerned 
   1.535 +	Capture	Image operation will be prioritised over other pending processing options.
   1.536 +
   1.537 +	@param  aCaptureImagePriority
   1.538 +			The desired level of priority.
   1.539 +
   1.540 +	@leave  May leave with any error code.
   1.541 +	*/
   1.542 +	virtual void SetCaptureImagePriorityL(TECamImagePriority aCaptureImagePriority)=0;
   1.543 +		
   1.544 +	/**
   1.545 +	Retrieves the priority of the Capture Image operation.
   1.546 +
   1.547 +	@param  aCaptureImagePriority
   1.548 +			Retrieves the current level of priority.
   1.549 +
   1.550 +	@leave  May leave with any error code.
   1.551 +	*/
   1.552 +	virtual void GetCaptureImagePriorityL(TECamImagePriority& aCaptureImagePriority) const=0;
   1.553 +
   1.554 +	/**
   1.555 +	Pauses processing options associated with the concerned Capture Image operation.
   1.556 +
   1.557 +	@param  aProcessingTypes
   1.558 +			The processing options which need to be paused.
   1.559 +	*/
   1.560 +	virtual void PauseProcessing(TUint aProcessingTypes)=0;
   1.561 +
   1.562 +	/**
   1.563 +	Resumes processing options associated with the concerned Capture Image operation.
   1.564 +
   1.565 +	@param  aProcessingTypes
   1.566 +			The processing options which need to be resumed.
   1.567 +
   1.568 +	@leave May leave with any error code.
   1.569 +	*/
   1.570 +	virtual void ResumeProcessingL(TUint aProcessingTypes)=0;
   1.571 +	};
   1.572 +	
   1.573 +/** 
   1.574 +This mixin class provides concrete implementation of API exposed by CCameraPostImageCaptureControl.
   1.575 +CameraPostImageCaptureControl class exposes an API for retrieving the image data from individual images (in case 
   1.576 +continuous drive mode is used for capturing the images) and also to apply control on the captured images individually.
   1.577 +
   1.578 +@publishedPartner
   1.579 +@prototype 
   1.580 +*/	
   1.581 +class MCameraPostImageCaptureControl
   1.582 +	{
   1.583 +	
   1.584 +public:
   1.585 +	
   1.586 +	/** 
   1.587 +	Releases the interface. 
   1.588 +	
   1.589 +	@param  aPostCaptureControlId
   1.590 +			The ID useful to indentify the post capture control handle of the captured image being deleted.
   1.591 +	*/
   1.592 +	virtual void Release(TPostCaptureControlId aPostCaptureControlId)=0;
   1.593 +	
   1.594 +	/**
   1.595 +	Retrieves the sequence number of the image being represented by this post capture control object. The sequence number
   1.596 +	specifies the index of the individual image if, in case, the multiple shot type of drive mode is being used. The first 
   1.597 +	individual image which is exposed to the sensor has a sequence number of zero. In case of single shot type of drive mode,
   1.598 +	the sequence number will be zero.
   1.599 +
   1.600 +	@param  aSequenceNumber
   1.601 +			Retrieves the sequence number of the image.
   1.602 +
   1.603 +	@leave  May leave with any error code.
   1.604 +	*/
   1.605 +	virtual void GetImageSequenceNumberL(TUint& aSequenceNumber) const=0;
   1.606 +	
   1.607 +	/**
   1.608 +	CCancels the outstanding individual image which the object of this class is referring to. This will also cancel any outstanding 
   1.609 +	processing options associated with this individual image. This method is synchronous. Hence, no callback shall be 
   1.610 +	issued for this individual image.
   1.611 +	*/
   1.612 +	virtual void CancelImage()=0;
   1.613 +	
   1.614 +	/**
   1.615 +	Prioritises the individual image which the object of this class is referring to. This implies that any processing
   1.616 +	options associated with this individual image will be prioritised over other pending processings options.
   1.617 +
   1.618 +	@param  aImagePriority
   1.619 +			The desired level of priority.
   1.620 +			
   1.621 +	@leave  May leave with any error code.
   1.622 +	*/
   1.623 +	virtual void SetImagePriorityL(TECamImagePriority aImagePriority)=0;
   1.624 +		
   1.625 +	/**
   1.626 +	Retrieves the priority of the individual image which the object of this class is referring to.
   1.627 +
   1.628 +	@param  aImagePriority
   1.629 +			The current level of priority.
   1.630 +			
   1.631 +	@leave  May leave with any error code.
   1.632 +	*/
   1.633 +	virtual void GetImagePriorityL(TECamImagePriority& aImagePriority) const=0;
   1.634 +	
   1.635 +	/**
   1.636 +	Pauses processing options associated with the concerned Capture Image operation.
   1.637 +
   1.638 +	@param  aProcessingTypes
   1.639 +			The processing options which need to be paused.
   1.640 +	*/
   1.641 +	virtual void PauseProcessing(TUint aProcessingTypes)=0;
   1.642 +
   1.643 +	/**
   1.644 +	Resumes processing options associated with the concerned Capture Image operation.
   1.645 +
   1.646 +	@param  aProcessingTypes
   1.647 +			The processing options which need to be resumed.
   1.648 +
   1.649 +	@leave May leave with any error code.
   1.650 +	*/
   1.651 +	virtual void ResumeProcessingL(TUint aProcessingTypes)=0;
   1.652 +	
   1.653 +	/**
   1.654 +	Retrieves the image buffer which contains the individual image captured. This method should be called by the client as a 
   1.655 +	result of receiving the callback MCaptureImageObserver::ImageBufferReady(), if the 
   1.656 +	error information received is satisfactory.
   1.657 +
   1.658 +	@param  aCameraImageBuffer
   1.659 +			A reference to an MCameraImageBuffer if successful, or NULL if not successful.
   1.660 +
   1.661 +	@leave  May leave with any error code.
   1.662 +	*/
   1.663 +	virtual void GetImageBufferL(MCameraImageBuffer& aCameraImageBuffer) const=0;
   1.664 +	
   1.665 +	/**
   1.666 +	Retrieves the state of the individual image which the object of this class is referring to.
   1.667 +
   1.668 +	@param  aImageState
   1.669 +			Retrieves the current state of the individual image.
   1.670 +			
   1.671 +	@leave  May leave with any error code.
   1.672 +	*/	
   1.673 +	virtual void GetImageStateL(CCamera::CCameraPostImageCaptureControl::TImageState& aImageState) const=0;
   1.674 +	
   1.675 +	/**
   1.676 +	Retrieves the state of the individual image buffer.
   1.677 +
   1.678 +	@param  aBufferState
   1.679 +			Retrieves the current state of the individual image buffer.
   1.680 +			
   1.681 +	@leave  May leave with any error code.
   1.682 +	*/	
   1.683 +	virtual void GetBufferStateL(CCamera::CCameraPostImageCaptureControl::TBufferState& aBufferState) const=0;
   1.684 +	};
   1.685 +
   1.686 +/** 
   1.687 +Mixin class for implementation by providers of the Video Capture Control Camera Extension API.
   1.688 +CCamera Video Capture Control class exposes an API for controlling advanced video capture related settings and control.
   1.689 +
   1.690 +@publishedPartner
   1.691 +@prototype 	
   1.692 +*/	
   1.693 +class MCameraVideoCaptureControl
   1.694 +	{
   1.695 +	
   1.696 +public:
   1.697 +	
   1.698 +	/** 
   1.699 +	Releases the interface. 
   1.700 +	*/
   1.701 +	virtual void Release()=0;
   1.702 +	
   1.703 +	/**
   1.704 +	Retrieves the concrete factory handle for the histogram implementation in order to 
   1.705 +	use it specifically for the video capture.
   1.706 +		   
   1.707 +	@param aImplFactoryPtr
   1.708 +		   The concrete factory handle for the histogram implementation specific to the video capture.
   1.709 +		   
   1.710 +	@leave  May leave with any error code.
   1.711 +	*/
   1.712 +	virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.713 +    	
   1.714 +	/**
   1.715 +	Retrieves the concrete factory handle for the snapshot implementation in order to 
   1.716 +	use it specifically for the video capture.
   1.717 +		   
   1.718 +	@param  aImplFactoryPtr
   1.719 +		    The concrete factory handle for the snapshot implementation specific to the video capture.
   1.720 +		   
   1.721 +	@leave  May leave with any error code.
   1.722 +	*/
   1.723 +	virtual void GetSnapshotImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.724 +	
   1.725 +	/**
   1.726 +	Retrieves the concrete factory handle for the image processing implementation in order to 
   1.727 +	use it specifically for the video capture.
   1.728 +	
   1.729 +	@param aImplFactoryPtr
   1.730 +		   The concrete factory handle for the image processing implementation specific to the video capture.
   1.731 +		   
   1.732 +	@leave  May leave with any error code.
   1.733 +	*/
   1.734 +	virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.735 +	
   1.736 +	/**
   1.737 +	The observer for the video capture is passed to the implementation for passing callbacks on it.
   1.738 +	
   1.739 +	@param  aCaptureVideoObserver
   1.740 +			The reference to the capture video observer.
   1.741 +	*/
   1.742 +	virtual void SetCaptureVideoObserver(MCaptureVideoObserver& aCaptureVideoObserver)=0;
   1.743 +	
   1.744 +    /**
   1.745 +	Retrieves the supported video formats for a given resolution.
   1.746 +	
   1.747 +	@param  aVideoFormatsSupported
   1.748 +			A bit field which retrieves the supported video formats for a given resolution.
   1.749 +			Formats have been defined as CCamera::TFormat
   1.750 +			
   1.751 +	@param  aSize
   1.752 +			The resolution (or size) for which the total number of supported video formats have to be retrieved.
   1.753 +	
   1.754 +	@leave  May leave with any error code.
   1.755 +	*/
   1.756 +	virtual void GetVideoFormatsSupportedL(TUint& aVideoFormatsSupported, const TSize& aSize) const=0;
   1.757 +
   1.758 +	/**
   1.759 +	Retrieves the supported pixel aspect ratio for a given resolution in case of video.
   1.760 +	
   1.761 +	@param  aPixelAspectsSupported
   1.762 +			A bit field which retrieves the supported pixel aspect ratio for a given resolution.
   1.763 +			Pixel aspect ratio have been defined as CCamera::CCameraAdvancedSettings::TPixelAspectRatio
   1.764 +	
   1.765 +	@param	aVideoFormat
   1.766 +			The video format for which the supported pixel aspect ratio have to be retrieved.
   1.767 +		
   1.768 +	@param  aSize
   1.769 +			The resolution (or size) for which the supported pixel aspect ratio have to be retrieved.
   1.770 +	
   1.771 +	@leave  May leave with any error code.
   1.772 +	*/
   1.773 +	virtual void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aVideoFormat, const TSize& aSize) const=0;
   1.774 +
   1.775 +	/**
   1.776 +	Informs whether or not the 'embedded still capture' feature is supported. Allowing still image capture in between 
   1.777 +	on-going video capture is referred to as embedded still capture.
   1.778 +
   1.779 +	@param  aSupportedEmbeddedStillCaptureTypes
   1.780 +			Retrieves the supported embedded still capture. The TInt is retrieved as a bit field of supported 
   1.781 +			TEmbeddedStillCaptureTypes.
   1.782 +
   1.783 +			
   1.784 +	@leave  May leave with any error code.
   1.785 +	*/
   1.786 +	virtual void GetEmbeddedStillCaptureSupportInfoL(TInt& aSupportedEmbeddedStillCaptureTypes) const=0;
   1.787 +
   1.788 +	/**
   1.789 +	Asynchronous method to prepare for video capture.
   1.790 +
   1.791 +	Performs setup and allocation of memory prior to calling StartVideoCapture()
   1.792 +	to keep the latency of that function to a minimum.
   1.793 +
   1.794 +	@param  aPrepareVideoParameters 
   1.795 +	 		Parameters necessary to prepare for video capture.
   1.796 +	 		
   1.797 +	@note   Event KUidECamEventVideoCaptureControlPrepareComplete is used to notify clients about completing the preparation
   1.798 +			for video capture.
   1.799 +			
   1.800 +	@note 	Next PrepareVideoCapture can be called only after receiving the notification KUidECamEventReadyForNextPrepare.
   1.801 +			
   1.802 +	@note   If some camera settings get affected because of desired video settings such as frame rate/frame size, 
   1.803 +			specific notifications will be sent to the client about camera settings being affected.
   1.804 +			
   1.805 +	@note	Event KUidECamEventVideoCaptureControlSettingsRangeChanged: informs that range of certain camera settings have been changed.
   1.806 +			Client may call GetRangeAffectedSettingsL(RArray<TUid>& aRangeAffectedSettings) const to get the list of affected camera settings.
   1.807 +
   1.808 +	@note	Event KUidECamEventVideoCaptureControlSettingsValueChanged: informs that value of certain camera settings have been changed. 
   1.809 +			Client may call GetValueAffectedSettingsL(RArray<TUid>& aValueAffectedSettings) const to get the list of affected camera settings.
   1.810 +
   1.811 +	@note	Event KUidECamEventVideoCaptureControlSettingsDisabled: informs that certain camera settings have been disabled. 
   1.812 +			Client may call GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const to get the list of affected camera settings.
   1.813 +
   1.814 +	@see 	CCamera::PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer)
   1.815 +	
   1.816 +	@see	ReleaseVideoResource()
   1.817 +	*/
   1.818 +	virtual void PrepareVideoCapture(const CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters)=0;
   1.819 +	
   1.820 +	/**
   1.821 +	Retrieves the camera settings whose range got affected once the desired video settings (frame rate/frame size) are in place. 
   1.822 +	This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsRangeChanged.
   1.823 +
   1.824 +	@param  aRangeAffectedSettings
   1.825 +			Retrieves the list of range affected settings
   1.826 +			
   1.827 +	@leave  May leave with any error code.  
   1.828 +
   1.829 +	@see 	PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
   1.830 +	*/
   1.831 +	virtual void GetRangeAffectedSettingsL(RArray<TUid>& aRangeAffectedSettings) const=0;
   1.832 +	
   1.833 +	/**
   1.834 +	Retrieves the camera settings whose value got affected once the desired video settings (frame rate/frame size) are in place. 
   1.835 +	This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsValueChanged.
   1.836 +
   1.837 +	@param  aValueAffectedSettings
   1.838 +			Retrieves the list of value affected settings
   1.839 +
   1.840 +	@leave  May leave with any error code.
   1.841 +
   1.842 +	@see 	PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)	
   1.843 +	*/
   1.844 +	virtual void GetValueAffectedSettingsL(RArray<TUid>& aValueAffectedSettings) const=0;
   1.845 +	
   1.846 +	/**
   1.847 +	Retrieves the camera settings whose value got affected once the desired video settings (frame rate/frame size) are in place. 
   1.848 +	This method may be called by the client after receiving the notification KUidECamEventVideoCaptureControlSettingsDisabled.
   1.849 +
   1.850 +	@param  aDisabledSettings
   1.851 +			Retrieves the list of disabled settings
   1.852 +
   1.853 +	@leave  May leave with any error code.
   1.854 +
   1.855 +	@see 	PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
   1.856 +	*/
   1.857 +	virtual void GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const=0;
   1.858 +	
   1.859 +	/**
   1.860 +	Frees the video resources which were set up as a result of CCameraVideoCaptureControl::PrepareVideoCapture call.
   1.861 +	If this methid is called while PrepareVideoCapture call is outstanding, then this will be equivalent to cancelling the
   1.862 +	PrepareVideoCapture call and release any allocated resources.
   1.863 +	*/
   1.864 +	virtual void ReleaseVideoResource()=0;
   1.865 +	
   1.866 +	/**
   1.867 +	Starts the video capture. This operation gives priority to the low latency aspects.
   1.868 +
   1.869 +	Video frames are send to client via MCaptureVideoObserver::VideoBufferReady(MCameraBuffer2& aVideoBuffer, TInt aErrorCode).
   1.870 +
   1.871 +	@leave  May leave with any error code.
   1.872 +
   1.873 +	@note	This method is recommended to be used rather than CCamera::StartVideoCaptureL().
   1.874 +	*/												
   1.875 +	virtual void StartVideoCaptureL()=0;
   1.876 +
   1.877 +	/**
   1.878 +	Stops the video capture. This operation gives priority to the low latency aspects.
   1.879 +
   1.880 +	@note	This method is recommended to be used rather than CCamera::StopVideoCapture().
   1.881 +	*/												
   1.882 +	virtual void StopVideoCapture()=0;
   1.883 +	
   1.884 +	/**
   1.885 +	Pauses the on-going video capture. MCaptureVideoObserver::VideoBufferReady(MCameraBuffer2& aVideoBuffer, TInt aErrorCode) 
   1.886 +	callback will not be received by the client until the video capture is resumed.
   1.887 +	*/
   1.888 +	virtual void PauseVideoCapture()=0;
   1.889 +		
   1.890 +	/**
   1.891 +	Resumes the on-going video capture. MCaptureVideoObserver::VideoBufferReady(MCameraBuffer2& aVideoBuffer, TInt aErrorCode) 
   1.892 +	callback will again be received by the client.
   1.893 +
   1.894 +	@leave  May leave with any error code.
   1.895 +	*/
   1.896 +	virtual void ResumeVideoCaptureL()=0;
   1.897 +	
   1.898 +	/**
   1.899 +	Retrieves the fading effect state for video capture.
   1.900 +
   1.901 +	@param  aFadingEffectState
   1.902 +			Retrieves the current fading effect state for video capture.
   1.903 +
   1.904 +	@leave  May leave with any error code.
   1.905 +	
   1.906 +	@internalTechnology
   1.907 +	*/
   1.908 +	virtual void GetFadingEffectStateL(CCamera::CCameraVideoCaptureControl::TFadingEffectState& aFadingEffectState) const=0;
   1.909 +		
   1.910 +	/**
   1.911 +	Sets the fading effect state for video capture.
   1.912 +
   1.913 +	@param  aFadingEffectState
   1.914 +			The desired fading effect state for video capture.
   1.915 +			
   1.916 +	@note   Triggers a KUidECamEventVideoCaptureControlFadingEffect event notification.
   1.917 +	
   1.918 +	@internalTechnology
   1.919 +	*/	
   1.920 +	virtual void SetFadingEffectState(CCamera::CCameraVideoCaptureControl::TFadingEffectState aFadingEffectState)=0;
   1.921 +		
   1.922 +	/**
   1.923 +	Retrieves the current video capture state.
   1.924 +	
   1.925 +	@param aVideoCaptureState
   1.926 +		   Retrieves the current video capture state.
   1.927 +	
   1.928 +	@leave  May leave with any error code.
   1.929 +	*/
   1.930 +	virtual void GetVideoCaptureStateL(CCamera::CCameraVideoCaptureControl::TVideoCaptureState& aVideoCaptureState) const=0;
   1.931 +	
   1.932 +	/**
   1.933 +	Retrieves the various types of video capture supported. 
   1.934 +	@param  aSupportedVideoCaptureTypes
   1.935 +			Retrieves the supported video capture type. The TInt is retrieved as a bit field of supported 
   1.936 +			TVideoCaptureType.
   1.937 +			
   1.938 +	@leave  May leave with any error code.
   1.939 +	*/
   1.940 +	virtual void GetVideoCaptureSupportInfoL(TInt& aSupportedVideoCaptureTypes) const=0;
   1.941 +	
   1.942 +	/**
   1.943 +	Retrieves the current prepare video parameters.
   1.944 +	
   1.945 +	@param aPrepareVideoParameters
   1.946 +		   Retrieves the current prepare video parameters.
   1.947 +		   	
   1.948 +	@leave  May leave with any error code.
   1.949 +	*/
   1.950 +	virtual void GetPrepareVideoParametersL(CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters) const=0;
   1.951 +	};
   1.952 +	
   1.953 +#endif // ECAMCAPTURECONTROLINTF_H