os/mm/imagingandcamerafws/camerafw/Include/CameraHistogram.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/CameraHistogram.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,536 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @publishedPartner
    1.22 + @prototype
    1.23 +*/
    1.24 +
    1.25 +#ifndef CAMERAHISTOGRAM_H
    1.26 +#define CAMERAHISTOGRAM_H
    1.27 +
    1.28 +#include <ecam.h>
    1.29 +#include <gdi.h>
    1.30 +
    1.31 +#include <ecam/camerasnapshot.h>
    1.32 +#include <ecamcapturecontrol.h>
    1.33 +#include <ecamviewfinder.h>
    1.34 +
    1.35 +#include <ecam/ecamcommonuids.hrh>
    1.36 +
    1.37 +class MHistogramBuffer;
    1.38 +class MCameraHistogram;
    1.39 +class MCameraV2Histogram;
    1.40 +
    1.41 +class MImplementationFactory;
    1.42 +
    1.43 +/** 
    1.44 +The current Version of the TDirectHistogramParameters class.
    1.45 +*/
    1.46 +static const TUint KECamDirectHistogramParametersCurrentVersion = 1;
    1.47 +
    1.48 +/** 
    1.49 +@deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
    1.50 +which have callback functions which notify the client about availability of histogram data. These are sent when 
    1.51 +CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
    1.52 +CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
    1.53 +
    1.54 +Uid used to identify the event that the request for histogram has completed.
    1.55 +A callback to MCameraObserver2::HandleEvent() will occur when the histogram data is ready to be retrieved.
    1.56 +If a call to StartHistogram() is made without a previous successful call to PrepareHistogramL() then the callback returns KErrBadHandle.
    1.57 +*/
    1.58 +static const TUid KUidECamEventCameraHistogram = {KUidECamEventHistogramUidValue};
    1.59 +
    1.60 +/** 
    1.61 +This is the UID which is used to obtain the CCameraHistogram interface, via a call to CCamera::CustomInterface().
    1.62 +
    1.63 +@see KECamHistogramUidValue
    1.64 +@see CCamera::CCameraHistogram
    1.65 +@deprecated use KECamV2HistogramUid
    1.66 +*/
    1.67 +static const TUid  KECamHistogramUid = {KECamHistogramUidValue};
    1.68 +
    1.69 +/**
    1.70 +This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram,
    1.71 +average colour value histogram, etc).
    1.72 +
    1.73 +The data generated can be fed to some exposure based algorithm, or directly displayed in the viewfinder.
    1.74 +It also allows the client to get and set the properties of a histogram.
    1.75 +
    1.76 +The client selects histogram parameters calling PrepareHistogramL(). It can then start and stop 
    1.77 +receiving notifications from the ECam implementation by calling StartHistogramL() and StopHistogramL().
    1.78 +The client application using this API should provide MCameraObserver2 interface to be signalled,
    1.79 +with event KUidECamEventCameraHistogram, when histogram data is available to be retrieved from 
    1.80 +the ECam implementation.
    1.81 +The client can then retrieve the histogram data from the ECam implementation calling HistograDataL().
    1.82 +
    1.83 +@note This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it.
    1.84 +
    1.85 +@note   If the class methods leave, the output type parameter value is not guaranteed to be valid.
    1.86 +
    1.87 +@publishedPartner
    1.88 +@deprecated use CCamera::CCameraV2Histogram
    1.89 +*/
    1.90 +
    1.91 +class CCamera::CCameraHistogram : public CBase
    1.92 +	{
    1.93 +
    1.94 +	friend class CCamera;
    1.95 +	
    1.96 +public:	
    1.97 +	/** Supported histogram types. */
    1.98 +	enum THistogramType
    1.99 +		{
   1.100 +		/** No histogram has been specified. */
   1.101 +		EHistNone			= 0x0000,
   1.102 +		/** Luminance based histogram. */
   1.103 +		ELuminance			= 0x0001,
   1.104 +		/** The histogram is based on the average value of all three RGB colour components. */
   1.105 +		EAverageRGB			= 0x0002,
   1.106 +		/** The histogram is based on the value of the red colour component. */
   1.107 +		ERedComponent		= 0x0004,
   1.108 +		/** The histogram is based on the value of the blue colour component. */
   1.109 +		EBlueComponent		= 0x0008,
   1.110 +		/** The histogram is based on the value of the green colour component. */
   1.111 +		EGreenComponent		= 0x0010
   1.112 +		};
   1.113 +	
   1.114 +public:
   1.115 +	IMPORT_C static CCamera::CCameraHistogram* NewL(CCamera& aCamera);
   1.116 +
   1.117 +	IMPORT_C TUint32 SupportedHistograms();
   1.118 +	IMPORT_C TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType); 
   1.119 +	IMPORT_C TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor);
   1.120 +    
   1.121 +    IMPORT_C void StartHistogramL(TUint aHistHandle);
   1.122 +    IMPORT_C void StopHistogramL(TUint aHistHandle);
   1.123 +    IMPORT_C void DestroyHistogramL(TUint aHistHandle);
   1.124 +    
   1.125 +    IMPORT_C void GetActiveHistogramsL(RArray<TUint>& aActiveHistograms); 
   1.126 +    IMPORT_C void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor);
   1.127 +	IMPORT_C void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor);
   1.128 +		
   1.129 +	IMPORT_C MHistogramBuffer& HistogramDataL();
   1.130 +	IMPORT_C MHistogramBuffer& HistogramDataL(TUint aHistHandle);
   1.131 +    
   1.132 +	IMPORT_C ~CCameraHistogram();
   1.133 +	    
   1.134 +private:
   1.135 +	CCameraHistogram(CCamera& aOwner);
   1.136 +	void ConstructL();
   1.137 +
   1.138 +private:
   1.139 +	CCamera&        iOwner;
   1.140 +    MCameraHistogram* iImpl;  // not owned
   1.141 + 	};
   1.142 +	
   1.143 +/** 
   1.144 +This is the UID which is used to obtain the CCameraV2Histogram interface, via a call to CCamera::CustomInterface().
   1.145 +
   1.146 +@publishedPartner
   1.147 +@prototype
   1.148 +*/
   1.149 +static const TUid  KECamV2HistogramUid = {KECamV2HistogramUidValue};
   1.150 +
   1.151 +/**
   1.152 +This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram,
   1.153 +average colour value histogram, etc).
   1.154 +
   1.155 +Histogram may be created for still images, video, viewfinders and snapshot. Further different types of histogram may be 
   1.156 +created for any of the imaging modes.
   1.157 +
   1.158 +The data generated can be fed to some exposure based algorithm, or directly displayed on the screen.
   1.159 +It also allows the client to get and set the properties of a histogram.
   1.160 +
   1.161 +The client selects histogram parameters calling PrepareClientHistogramL or PrepareDirectHistogramL. It can then start and 
   1.162 +stop receiving notifications from the ECam implementation by calling StartHistogram() and StopHistogram().
   1.163 +The client application using this API shall provide the interfaces: MCaptureImageObserver, MCaptureVideoObserver, 
   1.164 +MDirectViewFinderObserver and MClientViewFinderObserver in order to receive notifications about direct histogram display 
   1.165 +or client histogram data availablility.
   1.166 +
   1.167 +Implementation shall use MHistogramV2Buffer in order to provide client histogram data.
   1.168 +
   1.169 +@note  This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it.
   1.170 +
   1.171 +@note  If the class methods leave, the output type parameter value is not guaranteed to be valid.
   1.172 +
   1.173 +@publishedPartner
   1.174 +@prototype
   1.175 +*/
   1.176 +
   1.177 +class CCamera::CCameraV2Histogram : public CBase
   1.178 +	{
   1.179 +
   1.180 +	friend class CCamera;
   1.181 +	friend CCamera::CCameraV2Histogram* CCamera::CCameraSnapshot::CreateHistogramHandleL() const;
   1.182 +	friend CCamera::CCameraV2Histogram* CCamera::CCameraImageCapture::CreateHistogramHandleL() const;
   1.183 +	friend CCamera::CCameraV2Histogram* CCamera::CCameraVideoCaptureControl::CreateHistogramHandleL() const;
   1.184 +	friend CCamera::CCameraV2Histogram* CCamera::CCameraV2DirectViewFinder::CreateHistogramHandleL() const;
   1.185 +	friend CCamera::CCameraV2Histogram* CCamera::CCameraClientViewFinder::CreateHistogramHandleL() const;
   1.186 +	
   1.187 +public:	
   1.188 +	/** 
   1.189 +	Supported histogram types. 
   1.190 +	The enumeration list may be extended in future.
   1.191 +	*/
   1.192 +	enum THistogramType
   1.193 +		{
   1.194 +		/** No histogram has been specified. */
   1.195 +		EHistNone			= 0x0000,
   1.196 +		/** Luminance based histogram. */
   1.197 +		ELuminance			= 0x0001,
   1.198 +		/** The histogram is based on the average value of all three RGB colour components. */
   1.199 +		EAverageRGB			= 0x0002,
   1.200 +		/** The histogram is based on the value of the red colour component. */
   1.201 +		ERedComponent		= 0x0004,
   1.202 +		/** The histogram is based on the value of the blue colour component. */
   1.203 +		EBlueComponent		= 0x0008,
   1.204 +		/** The histogram is based on the value of the green colour component. */
   1.205 +		EGreenComponent		= 0x0010,
   1.206 +		/** Qualitative Histogram to mark over exposed parts of image. */
   1.207 +		EOverExposure 		= 0x0020,
   1.208 +		/** Qualitative Histogram to mark under exposed parts of image. */
   1.209 +		EUnderExposure 		= 0x0040,
   1.210 +		};
   1.211 +	
   1.212 +	/**
   1.213 +	Specifes the parameters necessary for a direct histogram.
   1.214 +	*/	
   1.215 +	class TDirectHistogramParameters
   1.216 +		{
   1.217 +	public:
   1.218 +		IMPORT_C TDirectHistogramParameters();
   1.219 +		
   1.220 +		IMPORT_C TUint Size() const;
   1.221 +		IMPORT_C TUint Version() const;
   1.222 +		
   1.223 +	private:
   1.224 +		//for future expansion
   1.225 +		TUint iSize:24;
   1.226 +		TUint iVersion:8;
   1.227 +		
   1.228 +		// reserved for future expansion
   1.229 +		TInt iReserved1;
   1.230 +		TInt iReserved2;
   1.231 +		TInt iReserved3;
   1.232 +		
   1.233 +	public:
   1.234 +		/** The type of histogram to be prepared. This must be one of the supported histogram types returned by
   1.235 +		SupportedHistograms(). */
   1.236 +		THistogramType iHistogramType;
   1.237 +		/** The position on the screen (in pixels) where the histogram is to be displayed. */
   1.238 +		TPoint iPosition;
   1.239 +		/** The size of histogram in pixels. */
   1.240 +		TSize iHistogramSize;
   1.241 +		/** The colour and alpha blending with which the histogram will be displayed. */
   1.242 +		TRgb iHistogramColor;
   1.243 +		/** The background color for the direct histogram. */ 
   1.244 +		TRgb iBackgroundColor; 
   1.245 +		};
   1.246 +		
   1.247 +public:
   1.248 +	
   1.249 +	IMPORT_C void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const;
   1.250 +	IMPORT_C void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const;
   1.251 +	
   1.252 +	IMPORT_C void PrepareClientHistogramL(THistogramType aType); 
   1.253 +	
   1.254 +	IMPORT_C void PrepareDirectHistogramL(const TDirectHistogramParameters& aDirectHistogramParameters);
   1.255 +	
   1.256 +	IMPORT_C void UpdateDirectHistogramPropertiesL(const TDirectHistogramParameters& aDirectHistogramParameters);
   1.257 +	IMPORT_C void GetDirectHistogramPropertiesL(TDirectHistogramParameters& aDirectHistogramParameters) const;
   1.258 +	
   1.259 +	IMPORT_C void StartHistogram();
   1.260 +    IMPORT_C void StopHistogram();
   1.261 +
   1.262 +	IMPORT_C void GetHistogramStateL(TBool& aIsHistogramActive) const; 
   1.263 +	
   1.264 +	IMPORT_C ~CCameraV2Histogram();
   1.265 +
   1.266 +private:
   1.267 +	IMPORT_C static CCamera::CCameraV2Histogram* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory);
   1.268 +	
   1.269 +	CCameraV2Histogram(CCamera& aOwner);
   1.270 +	void ConstructL(const MImplementationFactory& aImplFactory);
   1.271 +
   1.272 +private:
   1.273 +	CCamera&        iOwner;
   1.274 +    MCameraV2Histogram* iImpl;  // not owned
   1.275 +   	};
   1.276 +
   1.277 +	
   1.278 +//
   1.279 +// MHistogramBuffer //
   1.280 +//
   1.281 +
   1.282 +/**
   1.283 +This class is used to pass histogram data between the camera device and a client that implements MCameraObserver2.
   1.284 +
   1.285 +The buffer may contain multiple histograms.
   1.286 +
   1.287 +The class allows the client to access the data as a descriptor to a kernel chunk.
   1.288 +
   1.289 +@publishedPartner
   1.290 +@deprecated use MHistogramV2Buffer
   1.291 +*/
   1.292 +class MHistogramBuffer
   1.293 +	{
   1.294 +	
   1.295 +public:
   1.296 +
   1.297 +	/**
   1.298 +	@deprecated Only one histogram is available per buffer in MHistogramV2Buffer
   1.299 +	
   1.300 +	Returns the number of histograms contained within the buffer.
   1.301 +	 
   1.302 +	This value will not depend upon the number of images for which histograms are requested by the 
   1.303 +	client, but on the number of histograms generated by the ECam implementation. 
   1.304 +	In the case where the driving mode (bracket mode, video mode, etc.) returns more than one image or frame 
   1.305 +	the ECam implementation may not generate histograms for every valid image or frame. This can happen, for example, 
   1.306 +	if there are no changes in the histogram data or if there are performance problems. 
   1.307 +
   1.308 +	@return The number of histograms in the buffer. 
   1.309 +	*/
   1.310 +	virtual TInt NumOfHistograms() = 0;
   1.311 +
   1.312 +	/** 
   1.313 +	@deprecated use CCamera::CCameraV2Histogram::THistogramType MHistogramV2Buffer::Type()
   1.314 +
   1.315 +	Returns the type of histogram data that is available at the specified index within the histogram buffer.
   1.316 +		
   1.317 +	@param  aIndex
   1.318 +	        The index of the required histogram in the buffer. 
   1.319 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.320 +	
   1.321 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.322 +
   1.323 +	@return The type of the histogram in the buffer at the given index.
   1.324 +	*/
   1.325 +	virtual CCamera::CCameraHistogram::THistogramType TypeL(TUint aIndex) = 0;
   1.326 +
   1.327 +	/** 
   1.328 +	@deprecated use TInt MHistogramV2Buffer::ElementSize()
   1.329 +	
   1.330 +	Returns the number of bits per histogram element value used to store the histogram data at a 
   1.331 +	specified index within the histogram buffer. 	
   1.332 +	
   1.333 +	The number of bits per histogram element will be decided by the ECam implementation and it may vary
   1.334 +	for each histogram within the histogram buffer.
   1.335 +	
   1.336 +	@see NumOfElementsL()
   1.337 +	
   1.338 +	@param  aIndex
   1.339 +	        The index of the required histogram in the buffer. 
   1.340 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.341 +	
   1.342 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.343 +
   1.344 +	@return The histogram element size in bits.
   1.345 +	*/
   1.346 +	virtual TInt ElementSizeL(TUint aIndex) = 0;
   1.347 +
   1.348 +	/** 
   1.349 +	@deprecated use TInt MHistogramV2Buffer::NumOfElements()
   1.350 +	
   1.351 +	Returns the number of elements in the histogram at a specified index within the histogram buffer. 
   1.352 +	
   1.353 +	This value can be used along with the element size obtained by calling ElementSizeL(), to calculate
   1.354 +	the exact size of histogram data ( element-size x number-of-elements = histogram-size ).
   1.355 +	
   1.356 +	@param  aIndex
   1.357 +	        The index of the required histogram in the buffer. 
   1.358 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.359 +	
   1.360 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.361 +
   1.362 +	@return The number of elements in the histogram. 
   1.363 +	*/
   1.364 +	virtual TInt NumOfElementsL(TUint aIndex) = 0;
   1.365 +
   1.366 +	/**
   1.367 +	@deprecated use TDesC8* MHistogramV2Buffer::DataL()
   1.368 +	
   1.369 +	Allows access to a given histogram in the histogram buffer via a descriptor.
   1.370 +
   1.371 +	@param  aIndex
   1.372 +	        The index of the required histogram in the buffer. 
   1.373 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.374 +	
   1.375 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.376 +
   1.377 +	@return A pointer to a descriptor containing the histogram data.
   1.378 +	*/
   1.379 +	virtual TDesC8* DataL(TUint aIndex) = 0;
   1.380 +	
   1.381 +	/** 
   1.382 +	@deprecated use RChunk& MHistogramV2Buffer::ChunkL() 
   1.383 +
   1.384 +	Returns a handle to the chunk that contains the histogram data.
   1.385 +	The RChunk is exposed so that it can potentially be shared between multiple
   1.386 +	processes.
   1.387 +	@note 	The descriptor pointer returned by DataL() is effectively derived from this RChunk.
   1.388 +	
   1.389 +	@leave  KErrNotSupported if the chunk is not available.
   1.390 +
   1.391 +	@return A reference to a handle to the chunk containing the histogram data. 
   1.392 +	*/
   1.393 +	virtual RChunk& ChunkL() = 0;
   1.394 +	 
   1.395 +	/** 
   1.396 +	@deprecated use TInt MHistogramV2Buffer::ChunkOffsetL()
   1.397 +	
   1.398 +	Returns the offset in the chunk (returned by ChunkL()) that contains the data for the 
   1.399 +	histogram at a specified index within the histogram buffer. 
   1.400 +	
   1.401 +	@param  aIndex
   1.402 +	        The index of the required histogram in the buffer. 
   1.403 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.404 +	
   1.405 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.406 +
   1.407 +	@return The offset in the chunk that contains the start of the histogram data. 
   1.408 +	*/
   1.409 +	virtual TInt ChunkOffsetL(TUint aIndex) = 0;
   1.410 +
   1.411 +	/** 
   1.412 +	@deprecated Only one histogram is available per buffer in MHistogramV2Buffer
   1.413 +	
   1.414 +	Returns the image number or frame index to which the histogram stored at the specified 
   1.415 +	index within the buffer relates.
   1.416 +
   1.417 +	@param  aIndex
   1.418 +	        The index of the required histogram in the buffer. 
   1.419 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.420 +	
   1.421 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.422 +
   1.423 +	@return The image number or frame index.
   1.424 +	*/
   1.425 +	virtual TInt ImageNumberL(TUint aIndex) = 0;
   1.426 +	
   1.427 +	/** 
   1.428 +	@deprecated Only one histogram is available per buffer in MHistogramV2Buffer
   1.429 +	
   1.430 +	Returns the handle of a particular histogram stored in the buffer.
   1.431 +	
   1.432 +	@param  aIndex
   1.433 +	        The index of the required histogram in the buffer. 
   1.434 +	        This must be between 0 and (NumOfHistograms() - 1).
   1.435 +	
   1.436 +	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
   1.437 +	
   1.438 +	@return The handle of the histogram on the ECam implementation.
   1.439 +	*/
   1.440 +	virtual TUint HandleL(TUint aIndex) = 0;
   1.441 +	
   1.442 +	/** 	   
   1.443 +    @deprecated use void MHistogramV2Buffer::Release()
   1.444 +	
   1.445 +	Releases the buffer. Once the client has processed the histogram data it should
   1.446 +    use this method to signal to the camera that the buffer can be deleted or re-used.
   1.447 +	*/
   1.448 +	virtual void Release() = 0;
   1.449 +	};
   1.450 +
   1.451 +//
   1.452 +// MHistogramV2Buffer  //
   1.453 +//
   1.454 +	
   1.455 +/**
   1.456 +This class is used to pass histogram data between the camera device and a client that uses CCameraV2Histogram and 
   1.457 +implements MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver and MClientViewFinderObserver.
   1.458 +
   1.459 +Only one histogram data is available per buffer. ECam implementation will issue another callback once a new histogram
   1.460 +data is ready. Till that time, client shall use the histogram data available from the histogram buffer currently retrieved.
   1.461 +
   1.462 +The class allows the client to access the data as a descriptor to a kernel chunk.
   1.463 +
   1.464 +@see CCameraV2Histogram
   1.465 +
   1.466 +@publishedPartner
   1.467 +@prototype
   1.468 +*/
   1.469 +class MHistogramV2Buffer
   1.470 +	{
   1.471 +	
   1.472 +public:
   1.473 +	/** 
   1.474 +	Returns the type of histogram data that is available within the histogram buffer.
   1.475 +		
   1.476 +	@return The type of the histogram in the buffer at the given index.
   1.477 +	*/
   1.478 +	virtual CCamera::CCameraV2Histogram::THistogramType Type()=0;
   1.479 +
   1.480 +	/** 
   1.481 +	Returns the number of bits per histogram element value used to store the histogram data within the histogram buffer. 
   1.482 +	
   1.483 +	The number of bits per histogram element will be decided by the ECam implementation.
   1.484 +	
   1.485 +	@see NumOfElementsL()
   1.486 +	
   1.487 +	@return Positive value means the histogram element size in bits. Negative value means error case.
   1.488 +	*/
   1.489 +	virtual TInt ElementSize()=0;
   1.490 +
   1.491 +	/** 
   1.492 +	Returns the number of elements in the histogram within the histogram buffer. 
   1.493 +	
   1.494 +	This value can be used along with the element size obtained by calling ElementSizeL(), to calculate
   1.495 +	the exact size of histogram data ( element-size x number-of-elements = histogram-size ).
   1.496 +	
   1.497 +	@return Positive value means the number of elements in the histogram. Negative value means error case.
   1.498 +	*/
   1.499 +	virtual TInt NumOfElements()=0;
   1.500 +
   1.501 +	/**
   1.502 +	Allows access to the histogram in the histogram buffer via a descriptor.
   1.503 +
   1.504 +	@return A pointer to a descriptor containing the histogram data.
   1.505 +	
   1.506 +	@leave  May Leave with any error code.
   1.507 +	*/
   1.508 +	virtual TDesC8* DataL()=0;
   1.509 +	
   1.510 +	/** 
   1.511 +	Returns a handle to the chunk that contains the histogram data.
   1.512 +	The RChunk is exposed so that it can potentially be shared between multiple
   1.513 +	processes.
   1.514 +	@note 	The descriptor pointer returned by DataL() is effectively derived from this RChunk.
   1.515 +	
   1.516 +	@leave  KErrNotSupported if the chunk is not available. May Leave with any other error code as well.
   1.517 +
   1.518 +	@return A reference to a handle to the chunk containing the histogram data. 
   1.519 +	*/
   1.520 +	virtual RChunk& ChunkL()=0;
   1.521 +	 
   1.522 +	/** 
   1.523 +	Returns the offset in the chunk (returned by ChunkL()) that contains the data for the 
   1.524 +	histogram within the histogram buffer. 
   1.525 +	
   1.526 +	@leave  KErrNotSupported if the chunk is not available. May Leave with any other error code as well.
   1.527 +
   1.528 +	@return The offset in the chunk that contains the start of the histogram data. 
   1.529 +	*/
   1.530 +	virtual TInt ChunkOffsetL()=0;
   1.531 +
   1.532 +	/** 
   1.533 +	Releases the buffer. Once the client has processed the histogram data it should
   1.534 +    use this method to signal to the camera that the buffer can be deleted or re-used.
   1.535 +	*/
   1.536 +	virtual void Release()=0;
   1.537 +	};
   1.538 +
   1.539 +#endif // CAMERAHISTOGRAM_H