os/mm/imagingandcamerafws/camerafw/Include/ecamconstants.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) 2008-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
// Camera specific constants
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef  ECAMCONSTANTS_H
sl@0
    25
#define  ECAMCONSTANTS_H
sl@0
    26
sl@0
    27
/** 
sl@0
    28
	Multiplier value used to re-scale various parameters which would typically 
sl@0
    29
	require floating point representation.
sl@0
    30
	For example to represent aperture (F-stop) F5.6, all values are re-scaled using 
sl@0
    31
	this factor. In this way F5.6 will be 560, F22 will be 2200.
sl@0
    32
	Functions and settings which use such factor are clearly identified in 
sl@0
    33
	individual comments. 
sl@0
    34
*/
sl@0
    35
static const TInt KECamFineResolutionFactor 	= 100;
sl@0
    36
sl@0
    37
/** 
sl@0
    38
	Value info settings. This data type provides additional information 
sl@0
    39
	to specify the meaning of the returned array of values and 
sl@0
    40
	the related data set it describes. 
sl@0
    41
*/
sl@0
    42
enum TValueInfo
sl@0
    43
	{	
sl@0
    44
	/** 
sl@0
    45
		Data set consists of discrete, magnitude ordered values, 
sl@0
    46
		not necessary at uniform intervals.
sl@0
    47
		The array contains each of these individual values, magnitude ordered. 
sl@0
    48
		The first value in the array is the minimum and the last is the maximum value of the range. 
sl@0
    49
		Naturally it can be just one element or a bitfield. 
sl@0
    50
		*/
sl@0
    51
	/** Not active. The data array should be empty. */
sl@0
    52
	ENotActive,		
sl@0
    53
	/** Data is represented by one element TInt in the form of bitfields. */ 
sl@0
    54
	EBitField,
sl@0
    55
	/** Data is represented by individual elements. */
sl@0
    56
	EDiscreteSteps,
sl@0
    57
	/** Data set consists of discrete, magnitude ordered values, at uniform intervals.
sl@0
    58
		It can be described by the minimum, maximum value and the step. */
sl@0
    59
	EDiscreteRangeMinMaxStep,
sl@0
    60
	/** Data set is continuous.
sl@0
    61
		It can be described by the minimum and maximum value. The step is 1. */
sl@0
    62
	EContinuousRangeMinMax
sl@0
    63
	};
sl@0
    64
sl@0
    65
#endif // ECAMCONSTANTS_H