os/mm/imagingandcamerafws/camerafw/Include/CameraHistogram.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @publishedPartner
sl@0
    19
 @prototype
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef CAMERAHISTOGRAM_H
sl@0
    23
#define CAMERAHISTOGRAM_H
sl@0
    24
sl@0
    25
#include <ecam.h>
sl@0
    26
#include <gdi.h>
sl@0
    27
sl@0
    28
#include <ecam/camerasnapshot.h>
sl@0
    29
#include <ecamcapturecontrol.h>
sl@0
    30
#include <ecamviewfinder.h>
sl@0
    31
sl@0
    32
#include <ecam/ecamcommonuids.hrh>
sl@0
    33
sl@0
    34
class MHistogramBuffer;
sl@0
    35
class MCameraHistogram;
sl@0
    36
class MCameraV2Histogram;
sl@0
    37
sl@0
    38
class MImplementationFactory;
sl@0
    39
sl@0
    40
/** 
sl@0
    41
The current Version of the TDirectHistogramParameters class.
sl@0
    42
*/
sl@0
    43
static const TUint KECamDirectHistogramParametersCurrentVersion = 1;
sl@0
    44
sl@0
    45
/** 
sl@0
    46
@deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
sl@0
    47
which have callback functions which notify the client about availability of histogram data. These are sent when 
sl@0
    48
CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
sl@0
    49
CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
sl@0
    50
sl@0
    51
Uid used to identify the event that the request for histogram has completed.
sl@0
    52
A callback to MCameraObserver2::HandleEvent() will occur when the histogram data is ready to be retrieved.
sl@0
    53
If a call to StartHistogram() is made without a previous successful call to PrepareHistogramL() then the callback returns KErrBadHandle.
sl@0
    54
*/
sl@0
    55
static const TUid KUidECamEventCameraHistogram = {KUidECamEventHistogramUidValue};
sl@0
    56
sl@0
    57
/** 
sl@0
    58
This is the UID which is used to obtain the CCameraHistogram interface, via a call to CCamera::CustomInterface().
sl@0
    59
sl@0
    60
@see KECamHistogramUidValue
sl@0
    61
@see CCamera::CCameraHistogram
sl@0
    62
@deprecated use KECamV2HistogramUid
sl@0
    63
*/
sl@0
    64
static const TUid  KECamHistogramUid = {KECamHistogramUidValue};
sl@0
    65
sl@0
    66
/**
sl@0
    67
This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram,
sl@0
    68
average colour value histogram, etc).
sl@0
    69
sl@0
    70
The data generated can be fed to some exposure based algorithm, or directly displayed in the viewfinder.
sl@0
    71
It also allows the client to get and set the properties of a histogram.
sl@0
    72
sl@0
    73
The client selects histogram parameters calling PrepareHistogramL(). It can then start and stop 
sl@0
    74
receiving notifications from the ECam implementation by calling StartHistogramL() and StopHistogramL().
sl@0
    75
The client application using this API should provide MCameraObserver2 interface to be signalled,
sl@0
    76
with event KUidECamEventCameraHistogram, when histogram data is available to be retrieved from 
sl@0
    77
the ECam implementation.
sl@0
    78
The client can then retrieve the histogram data from the ECam implementation calling HistograDataL().
sl@0
    79
sl@0
    80
@note This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it.
sl@0
    81
sl@0
    82
@note   If the class methods leave, the output type parameter value is not guaranteed to be valid.
sl@0
    83
sl@0
    84
@publishedPartner
sl@0
    85
@deprecated use CCamera::CCameraV2Histogram
sl@0
    86
*/
sl@0
    87
sl@0
    88
class CCamera::CCameraHistogram : public CBase
sl@0
    89
	{
sl@0
    90
sl@0
    91
	friend class CCamera;
sl@0
    92
	
sl@0
    93
public:	
sl@0
    94
	/** Supported histogram types. */
sl@0
    95
	enum THistogramType
sl@0
    96
		{
sl@0
    97
		/** No histogram has been specified. */
sl@0
    98
		EHistNone			= 0x0000,
sl@0
    99
		/** Luminance based histogram. */
sl@0
   100
		ELuminance			= 0x0001,
sl@0
   101
		/** The histogram is based on the average value of all three RGB colour components. */
sl@0
   102
		EAverageRGB			= 0x0002,
sl@0
   103
		/** The histogram is based on the value of the red colour component. */
sl@0
   104
		ERedComponent		= 0x0004,
sl@0
   105
		/** The histogram is based on the value of the blue colour component. */
sl@0
   106
		EBlueComponent		= 0x0008,
sl@0
   107
		/** The histogram is based on the value of the green colour component. */
sl@0
   108
		EGreenComponent		= 0x0010
sl@0
   109
		};
sl@0
   110
	
sl@0
   111
public:
sl@0
   112
	IMPORT_C static CCamera::CCameraHistogram* NewL(CCamera& aCamera);
sl@0
   113
sl@0
   114
	IMPORT_C TUint32 SupportedHistograms();
sl@0
   115
	IMPORT_C TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType); 
sl@0
   116
	IMPORT_C TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor);
sl@0
   117
    
sl@0
   118
    IMPORT_C void StartHistogramL(TUint aHistHandle);
sl@0
   119
    IMPORT_C void StopHistogramL(TUint aHistHandle);
sl@0
   120
    IMPORT_C void DestroyHistogramL(TUint aHistHandle);
sl@0
   121
    
sl@0
   122
    IMPORT_C void GetActiveHistogramsL(RArray<TUint>& aActiveHistograms); 
sl@0
   123
    IMPORT_C void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor);
sl@0
   124
	IMPORT_C void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor);
sl@0
   125
		
sl@0
   126
	IMPORT_C MHistogramBuffer& HistogramDataL();
sl@0
   127
	IMPORT_C MHistogramBuffer& HistogramDataL(TUint aHistHandle);
sl@0
   128
    
sl@0
   129
	IMPORT_C ~CCameraHistogram();
sl@0
   130
	    
sl@0
   131
private:
sl@0
   132
	CCameraHistogram(CCamera& aOwner);
sl@0
   133
	void ConstructL();
sl@0
   134
sl@0
   135
private:
sl@0
   136
	CCamera&        iOwner;
sl@0
   137
    MCameraHistogram* iImpl;  // not owned
sl@0
   138
 	};
sl@0
   139
	
sl@0
   140
/** 
sl@0
   141
This is the UID which is used to obtain the CCameraV2Histogram interface, via a call to CCamera::CustomInterface().
sl@0
   142
sl@0
   143
@publishedPartner
sl@0
   144
@prototype
sl@0
   145
*/
sl@0
   146
static const TUid  KECamV2HistogramUid = {KECamV2HistogramUidValue};
sl@0
   147
sl@0
   148
/**
sl@0
   149
This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram,
sl@0
   150
average colour value histogram, etc).
sl@0
   151
sl@0
   152
Histogram may be created for still images, video, viewfinders and snapshot. Further different types of histogram may be 
sl@0
   153
created for any of the imaging modes.
sl@0
   154
sl@0
   155
The data generated can be fed to some exposure based algorithm, or directly displayed on the screen.
sl@0
   156
It also allows the client to get and set the properties of a histogram.
sl@0
   157
sl@0
   158
The client selects histogram parameters calling PrepareClientHistogramL or PrepareDirectHistogramL. It can then start and 
sl@0
   159
stop receiving notifications from the ECam implementation by calling StartHistogram() and StopHistogram().
sl@0
   160
The client application using this API shall provide the interfaces: MCaptureImageObserver, MCaptureVideoObserver, 
sl@0
   161
MDirectViewFinderObserver and MClientViewFinderObserver in order to receive notifications about direct histogram display 
sl@0
   162
or client histogram data availablility.
sl@0
   163
sl@0
   164
Implementation shall use MHistogramV2Buffer in order to provide client histogram data.
sl@0
   165
sl@0
   166
@note  This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it.
sl@0
   167
sl@0
   168
@note  If the class methods leave, the output type parameter value is not guaranteed to be valid.
sl@0
   169
sl@0
   170
@publishedPartner
sl@0
   171
@prototype
sl@0
   172
*/
sl@0
   173
sl@0
   174
class CCamera::CCameraV2Histogram : public CBase
sl@0
   175
	{
sl@0
   176
sl@0
   177
	friend class CCamera;
sl@0
   178
	friend CCamera::CCameraV2Histogram* CCamera::CCameraSnapshot::CreateHistogramHandleL() const;
sl@0
   179
	friend CCamera::CCameraV2Histogram* CCamera::CCameraImageCapture::CreateHistogramHandleL() const;
sl@0
   180
	friend CCamera::CCameraV2Histogram* CCamera::CCameraVideoCaptureControl::CreateHistogramHandleL() const;
sl@0
   181
	friend CCamera::CCameraV2Histogram* CCamera::CCameraV2DirectViewFinder::CreateHistogramHandleL() const;
sl@0
   182
	friend CCamera::CCameraV2Histogram* CCamera::CCameraClientViewFinder::CreateHistogramHandleL() const;
sl@0
   183
	
sl@0
   184
public:	
sl@0
   185
	/** 
sl@0
   186
	Supported histogram types. 
sl@0
   187
	The enumeration list may be extended in future.
sl@0
   188
	*/
sl@0
   189
	enum THistogramType
sl@0
   190
		{
sl@0
   191
		/** No histogram has been specified. */
sl@0
   192
		EHistNone			= 0x0000,
sl@0
   193
		/** Luminance based histogram. */
sl@0
   194
		ELuminance			= 0x0001,
sl@0
   195
		/** The histogram is based on the average value of all three RGB colour components. */
sl@0
   196
		EAverageRGB			= 0x0002,
sl@0
   197
		/** The histogram is based on the value of the red colour component. */
sl@0
   198
		ERedComponent		= 0x0004,
sl@0
   199
		/** The histogram is based on the value of the blue colour component. */
sl@0
   200
		EBlueComponent		= 0x0008,
sl@0
   201
		/** The histogram is based on the value of the green colour component. */
sl@0
   202
		EGreenComponent		= 0x0010,
sl@0
   203
		/** Qualitative Histogram to mark over exposed parts of image. */
sl@0
   204
		EOverExposure 		= 0x0020,
sl@0
   205
		/** Qualitative Histogram to mark under exposed parts of image. */
sl@0
   206
		EUnderExposure 		= 0x0040,
sl@0
   207
		};
sl@0
   208
	
sl@0
   209
	/**
sl@0
   210
	Specifes the parameters necessary for a direct histogram.
sl@0
   211
	*/	
sl@0
   212
	class TDirectHistogramParameters
sl@0
   213
		{
sl@0
   214
	public:
sl@0
   215
		IMPORT_C TDirectHistogramParameters();
sl@0
   216
		
sl@0
   217
		IMPORT_C TUint Size() const;
sl@0
   218
		IMPORT_C TUint Version() const;
sl@0
   219
		
sl@0
   220
	private:
sl@0
   221
		//for future expansion
sl@0
   222
		TUint iSize:24;
sl@0
   223
		TUint iVersion:8;
sl@0
   224
		
sl@0
   225
		// reserved for future expansion
sl@0
   226
		TInt iReserved1;
sl@0
   227
		TInt iReserved2;
sl@0
   228
		TInt iReserved3;
sl@0
   229
		
sl@0
   230
	public:
sl@0
   231
		/** The type of histogram to be prepared. This must be one of the supported histogram types returned by
sl@0
   232
		SupportedHistograms(). */
sl@0
   233
		THistogramType iHistogramType;
sl@0
   234
		/** The position on the screen (in pixels) where the histogram is to be displayed. */
sl@0
   235
		TPoint iPosition;
sl@0
   236
		/** The size of histogram in pixels. */
sl@0
   237
		TSize iHistogramSize;
sl@0
   238
		/** The colour and alpha blending with which the histogram will be displayed. */
sl@0
   239
		TRgb iHistogramColor;
sl@0
   240
		/** The background color for the direct histogram. */ 
sl@0
   241
		TRgb iBackgroundColor; 
sl@0
   242
		};
sl@0
   243
		
sl@0
   244
public:
sl@0
   245
	
sl@0
   246
	IMPORT_C void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const;
sl@0
   247
	IMPORT_C void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const;
sl@0
   248
	
sl@0
   249
	IMPORT_C void PrepareClientHistogramL(THistogramType aType); 
sl@0
   250
	
sl@0
   251
	IMPORT_C void PrepareDirectHistogramL(const TDirectHistogramParameters& aDirectHistogramParameters);
sl@0
   252
	
sl@0
   253
	IMPORT_C void UpdateDirectHistogramPropertiesL(const TDirectHistogramParameters& aDirectHistogramParameters);
sl@0
   254
	IMPORT_C void GetDirectHistogramPropertiesL(TDirectHistogramParameters& aDirectHistogramParameters) const;
sl@0
   255
	
sl@0
   256
	IMPORT_C void StartHistogram();
sl@0
   257
    IMPORT_C void StopHistogram();
sl@0
   258
sl@0
   259
	IMPORT_C void GetHistogramStateL(TBool& aIsHistogramActive) const; 
sl@0
   260
	
sl@0
   261
	IMPORT_C ~CCameraV2Histogram();
sl@0
   262
sl@0
   263
private:
sl@0
   264
	IMPORT_C static CCamera::CCameraV2Histogram* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory);
sl@0
   265
	
sl@0
   266
	CCameraV2Histogram(CCamera& aOwner);
sl@0
   267
	void ConstructL(const MImplementationFactory& aImplFactory);
sl@0
   268
sl@0
   269
private:
sl@0
   270
	CCamera&        iOwner;
sl@0
   271
    MCameraV2Histogram* iImpl;  // not owned
sl@0
   272
   	};
sl@0
   273
sl@0
   274
	
sl@0
   275
//
sl@0
   276
// MHistogramBuffer //
sl@0
   277
//
sl@0
   278
sl@0
   279
/**
sl@0
   280
This class is used to pass histogram data between the camera device and a client that implements MCameraObserver2.
sl@0
   281
sl@0
   282
The buffer may contain multiple histograms.
sl@0
   283
sl@0
   284
The class allows the client to access the data as a descriptor to a kernel chunk.
sl@0
   285
sl@0
   286
@publishedPartner
sl@0
   287
@deprecated use MHistogramV2Buffer
sl@0
   288
*/
sl@0
   289
class MHistogramBuffer
sl@0
   290
	{
sl@0
   291
	
sl@0
   292
public:
sl@0
   293
sl@0
   294
	/**
sl@0
   295
	@deprecated Only one histogram is available per buffer in MHistogramV2Buffer
sl@0
   296
	
sl@0
   297
	Returns the number of histograms contained within the buffer.
sl@0
   298
	 
sl@0
   299
	This value will not depend upon the number of images for which histograms are requested by the 
sl@0
   300
	client, but on the number of histograms generated by the ECam implementation. 
sl@0
   301
	In the case where the driving mode (bracket mode, video mode, etc.) returns more than one image or frame 
sl@0
   302
	the ECam implementation may not generate histograms for every valid image or frame. This can happen, for example, 
sl@0
   303
	if there are no changes in the histogram data or if there are performance problems. 
sl@0
   304
sl@0
   305
	@return The number of histograms in the buffer. 
sl@0
   306
	*/
sl@0
   307
	virtual TInt NumOfHistograms() = 0;
sl@0
   308
sl@0
   309
	/** 
sl@0
   310
	@deprecated use CCamera::CCameraV2Histogram::THistogramType MHistogramV2Buffer::Type()
sl@0
   311
sl@0
   312
	Returns the type of histogram data that is available at the specified index within the histogram buffer.
sl@0
   313
		
sl@0
   314
	@param  aIndex
sl@0
   315
	        The index of the required histogram in the buffer. 
sl@0
   316
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   317
	
sl@0
   318
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   319
sl@0
   320
	@return The type of the histogram in the buffer at the given index.
sl@0
   321
	*/
sl@0
   322
	virtual CCamera::CCameraHistogram::THistogramType TypeL(TUint aIndex) = 0;
sl@0
   323
sl@0
   324
	/** 
sl@0
   325
	@deprecated use TInt MHistogramV2Buffer::ElementSize()
sl@0
   326
	
sl@0
   327
	Returns the number of bits per histogram element value used to store the histogram data at a 
sl@0
   328
	specified index within the histogram buffer. 	
sl@0
   329
	
sl@0
   330
	The number of bits per histogram element will be decided by the ECam implementation and it may vary
sl@0
   331
	for each histogram within the histogram buffer.
sl@0
   332
	
sl@0
   333
	@see NumOfElementsL()
sl@0
   334
	
sl@0
   335
	@param  aIndex
sl@0
   336
	        The index of the required histogram in the buffer. 
sl@0
   337
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   338
	
sl@0
   339
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   340
sl@0
   341
	@return The histogram element size in bits.
sl@0
   342
	*/
sl@0
   343
	virtual TInt ElementSizeL(TUint aIndex) = 0;
sl@0
   344
sl@0
   345
	/** 
sl@0
   346
	@deprecated use TInt MHistogramV2Buffer::NumOfElements()
sl@0
   347
	
sl@0
   348
	Returns the number of elements in the histogram at a specified index within the histogram buffer. 
sl@0
   349
	
sl@0
   350
	This value can be used along with the element size obtained by calling ElementSizeL(), to calculate
sl@0
   351
	the exact size of histogram data ( element-size x number-of-elements = histogram-size ).
sl@0
   352
	
sl@0
   353
	@param  aIndex
sl@0
   354
	        The index of the required histogram in the buffer. 
sl@0
   355
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   356
	
sl@0
   357
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   358
sl@0
   359
	@return The number of elements in the histogram. 
sl@0
   360
	*/
sl@0
   361
	virtual TInt NumOfElementsL(TUint aIndex) = 0;
sl@0
   362
sl@0
   363
	/**
sl@0
   364
	@deprecated use TDesC8* MHistogramV2Buffer::DataL()
sl@0
   365
	
sl@0
   366
	Allows access to a given histogram in the histogram buffer via a descriptor.
sl@0
   367
sl@0
   368
	@param  aIndex
sl@0
   369
	        The index of the required histogram in the buffer. 
sl@0
   370
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   371
	
sl@0
   372
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   373
sl@0
   374
	@return A pointer to a descriptor containing the histogram data.
sl@0
   375
	*/
sl@0
   376
	virtual TDesC8* DataL(TUint aIndex) = 0;
sl@0
   377
	
sl@0
   378
	/** 
sl@0
   379
	@deprecated use RChunk& MHistogramV2Buffer::ChunkL() 
sl@0
   380
sl@0
   381
	Returns a handle to the chunk that contains the histogram data.
sl@0
   382
	The RChunk is exposed so that it can potentially be shared between multiple
sl@0
   383
	processes.
sl@0
   384
	@note 	The descriptor pointer returned by DataL() is effectively derived from this RChunk.
sl@0
   385
	
sl@0
   386
	@leave  KErrNotSupported if the chunk is not available.
sl@0
   387
sl@0
   388
	@return A reference to a handle to the chunk containing the histogram data. 
sl@0
   389
	*/
sl@0
   390
	virtual RChunk& ChunkL() = 0;
sl@0
   391
	 
sl@0
   392
	/** 
sl@0
   393
	@deprecated use TInt MHistogramV2Buffer::ChunkOffsetL()
sl@0
   394
	
sl@0
   395
	Returns the offset in the chunk (returned by ChunkL()) that contains the data for the 
sl@0
   396
	histogram at a specified index within the histogram buffer. 
sl@0
   397
	
sl@0
   398
	@param  aIndex
sl@0
   399
	        The index of the required histogram in the buffer. 
sl@0
   400
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   401
	
sl@0
   402
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   403
sl@0
   404
	@return The offset in the chunk that contains the start of the histogram data. 
sl@0
   405
	*/
sl@0
   406
	virtual TInt ChunkOffsetL(TUint aIndex) = 0;
sl@0
   407
sl@0
   408
	/** 
sl@0
   409
	@deprecated Only one histogram is available per buffer in MHistogramV2Buffer
sl@0
   410
	
sl@0
   411
	Returns the image number or frame index to which the histogram stored at the specified 
sl@0
   412
	index within the buffer relates.
sl@0
   413
sl@0
   414
	@param  aIndex
sl@0
   415
	        The index of the required histogram in the buffer. 
sl@0
   416
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   417
	
sl@0
   418
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   419
sl@0
   420
	@return The image number or frame index.
sl@0
   421
	*/
sl@0
   422
	virtual TInt ImageNumberL(TUint aIndex) = 0;
sl@0
   423
	
sl@0
   424
	/** 
sl@0
   425
	@deprecated Only one histogram is available per buffer in MHistogramV2Buffer
sl@0
   426
	
sl@0
   427
	Returns the handle of a particular histogram stored in the buffer.
sl@0
   428
	
sl@0
   429
	@param  aIndex
sl@0
   430
	        The index of the required histogram in the buffer. 
sl@0
   431
	        This must be between 0 and (NumOfHistograms() - 1).
sl@0
   432
	
sl@0
   433
	@leave  KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
sl@0
   434
	
sl@0
   435
	@return The handle of the histogram on the ECam implementation.
sl@0
   436
	*/
sl@0
   437
	virtual TUint HandleL(TUint aIndex) = 0;
sl@0
   438
	
sl@0
   439
	/** 	   
sl@0
   440
    @deprecated use void MHistogramV2Buffer::Release()
sl@0
   441
	
sl@0
   442
	Releases the buffer. Once the client has processed the histogram data it should
sl@0
   443
    use this method to signal to the camera that the buffer can be deleted or re-used.
sl@0
   444
	*/
sl@0
   445
	virtual void Release() = 0;
sl@0
   446
	};
sl@0
   447
sl@0
   448
//
sl@0
   449
// MHistogramV2Buffer  //
sl@0
   450
//
sl@0
   451
	
sl@0
   452
/**
sl@0
   453
This class is used to pass histogram data between the camera device and a client that uses CCameraV2Histogram and 
sl@0
   454
implements MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver and MClientViewFinderObserver.
sl@0
   455
sl@0
   456
Only one histogram data is available per buffer. ECam implementation will issue another callback once a new histogram
sl@0
   457
data is ready. Till that time, client shall use the histogram data available from the histogram buffer currently retrieved.
sl@0
   458
sl@0
   459
The class allows the client to access the data as a descriptor to a kernel chunk.
sl@0
   460
sl@0
   461
@see CCameraV2Histogram
sl@0
   462
sl@0
   463
@publishedPartner
sl@0
   464
@prototype
sl@0
   465
*/
sl@0
   466
class MHistogramV2Buffer
sl@0
   467
	{
sl@0
   468
	
sl@0
   469
public:
sl@0
   470
	/** 
sl@0
   471
	Returns the type of histogram data that is available within the histogram buffer.
sl@0
   472
		
sl@0
   473
	@return The type of the histogram in the buffer at the given index.
sl@0
   474
	*/
sl@0
   475
	virtual CCamera::CCameraV2Histogram::THistogramType Type()=0;
sl@0
   476
sl@0
   477
	/** 
sl@0
   478
	Returns the number of bits per histogram element value used to store the histogram data within the histogram buffer. 
sl@0
   479
	
sl@0
   480
	The number of bits per histogram element will be decided by the ECam implementation.
sl@0
   481
	
sl@0
   482
	@see NumOfElementsL()
sl@0
   483
	
sl@0
   484
	@return Positive value means the histogram element size in bits. Negative value means error case.
sl@0
   485
	*/
sl@0
   486
	virtual TInt ElementSize()=0;
sl@0
   487
sl@0
   488
	/** 
sl@0
   489
	Returns the number of elements in the histogram within the histogram buffer. 
sl@0
   490
	
sl@0
   491
	This value can be used along with the element size obtained by calling ElementSizeL(), to calculate
sl@0
   492
	the exact size of histogram data ( element-size x number-of-elements = histogram-size ).
sl@0
   493
	
sl@0
   494
	@return Positive value means the number of elements in the histogram. Negative value means error case.
sl@0
   495
	*/
sl@0
   496
	virtual TInt NumOfElements()=0;
sl@0
   497
sl@0
   498
	/**
sl@0
   499
	Allows access to the histogram in the histogram buffer via a descriptor.
sl@0
   500
sl@0
   501
	@return A pointer to a descriptor containing the histogram data.
sl@0
   502
	
sl@0
   503
	@leave  May Leave with any error code.
sl@0
   504
	*/
sl@0
   505
	virtual TDesC8* DataL()=0;
sl@0
   506
	
sl@0
   507
	/** 
sl@0
   508
	Returns a handle to the chunk that contains the histogram data.
sl@0
   509
	The RChunk is exposed so that it can potentially be shared between multiple
sl@0
   510
	processes.
sl@0
   511
	@note 	The descriptor pointer returned by DataL() is effectively derived from this RChunk.
sl@0
   512
	
sl@0
   513
	@leave  KErrNotSupported if the chunk is not available. May Leave with any other error code as well.
sl@0
   514
sl@0
   515
	@return A reference to a handle to the chunk containing the histogram data. 
sl@0
   516
	*/
sl@0
   517
	virtual RChunk& ChunkL()=0;
sl@0
   518
	 
sl@0
   519
	/** 
sl@0
   520
	Returns the offset in the chunk (returned by ChunkL()) that contains the data for the 
sl@0
   521
	histogram within the histogram buffer. 
sl@0
   522
	
sl@0
   523
	@leave  KErrNotSupported if the chunk is not available. May Leave with any other error code as well.
sl@0
   524
sl@0
   525
	@return The offset in the chunk that contains the start of the histogram data. 
sl@0
   526
	*/
sl@0
   527
	virtual TInt ChunkOffsetL()=0;
sl@0
   528
sl@0
   529
	/** 
sl@0
   530
	Releases the buffer. Once the client has processed the histogram data it should
sl@0
   531
    use this method to signal to the camera that the buffer can be deleted or re-used.
sl@0
   532
	*/
sl@0
   533
	virtual void Release()=0;
sl@0
   534
	};
sl@0
   535
sl@0
   536
#endif // CAMERAHISTOGRAM_H