os/mm/devsound/a3facf/inc/a3fbase.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) 2006-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
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @publishedPartner 
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
sl@0
    25
#ifndef A3FBASE_H
sl@0
    26
#define A3FBASE_H
sl@0
    27
sl@0
    28
#include <e32base.h>
sl@0
    29
sl@0
    30
/**
sl@0
    31
* Provides the process id of the original application.
sl@0
    32
*/ 
sl@0
    33
class TClientContextSettings
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	/**
sl@0
    37
	* Application Process Id.
sl@0
    38
	*/
sl@0
    39
	TProcessId iProcessId; 
sl@0
    40
	};
sl@0
    41
sl@0
    42
sl@0
    43
/**
sl@0
    44
* States of a stream.
sl@0
    45
*/
sl@0
    46
enum TAudioState
sl@0
    47
	{
sl@0
    48
	/**Uninitialized state */    
sl@0
    49
	EUninitialized = 0,
sl@0
    50
	/**Initialized state */    
sl@0
    51
	EInitialized,
sl@0
    52
	/**Idle state */    
sl@0
    53
	EIdle,
sl@0
    54
	/**Primed state */    
sl@0
    55
	EPrimed,
sl@0
    56
	/**Active state */    
sl@0
    57
	EActive,
sl@0
    58
	/**Dead state */    
sl@0
    59
	EDead
sl@0
    60
	};
sl@0
    61
sl@0
    62
/**
sl@0
    63
* Audio type of a stream.
sl@0
    64
*/
sl@0
    65
class TAudioTypeSettings
sl@0
    66
	{
sl@0
    67
public:
sl@0
    68
	/**
sl@0
    69
	* Priority of client.
sl@0
    70
	*/
sl@0
    71
	TInt iPriority;
sl@0
    72
sl@0
    73
	/**
sl@0
    74
	* The priority preference of client.
sl@0
    75
	*/
sl@0
    76
	TInt iPref;
sl@0
    77
	};
sl@0
    78
sl@0
    79
sl@0
    80
/**
sl@0
    81
* Mode setting available.
sl@0
    82
*
sl@0
    83
* "Mode" in this context refers to the number of channels (i.e. mono or stereo).
sl@0
    84
* The modes are given as UIDs. 
sl@0
    85
*
sl@0
    86
*/
sl@0
    87
sl@0
    88
/** Mono data */ 
sl@0
    89
const TInt  KA3FModeMonoValue					= 0x1028348D;
sl@0
    90
const TUid	KA3FModeMono						= {KA3FModeMonoValue};
sl@0
    91
/** Stereo data, non-interleaved */ 
sl@0
    92
const TInt	KA3FModeStereoNonInterleavedValue	= 0x1028348E;
sl@0
    93
const TUid	KA3FModeStereoNonInterleaved		= {KA3FModeStereoNonInterleavedValue};
sl@0
    94
/** Interleaved Stereo data */ 
sl@0
    95
const TInt	KA3FModeStereoInterleavedValue		= 0x1028348F;
sl@0
    96
const TUid	KA3FModeStereoInterleaved			= {KA3FModeStereoInterleavedValue};
sl@0
    97
/** 5.1 encoded data */ 
sl@0
    98
const TInt	KA3FMode51Value						= 0x10283490;
sl@0
    99
const TUid	KA3FMode51							= {KA3FMode51Value};
sl@0
   100
sl@0
   101
sl@0
   102
/**
sl@0
   103
* Type class for audio channel.
sl@0
   104
*/
sl@0
   105
class TAudioChannelGain
sl@0
   106
	{
sl@0
   107
public:
sl@0
   108
	/**
sl@0
   109
	* Location of the channel in degrees on a circle located on the same plane as the listener,
sl@0
   110
	* with listener in the center of the circle.
sl@0
   111
	* Negative values are used for channels the location of which is not important.
sl@0
   112
	*/
sl@0
   113
	TInt iLocation;
sl@0
   114
sl@0
   115
	/**
sl@0
   116
	* Absolute gain value of channel.
sl@0
   117
	* Allowed values are 0 - MaxGain().
sl@0
   118
	*/
sl@0
   119
	TInt iGain;
sl@0
   120
sl@0
   121
	/**
sl@0
   122
	* Mapping of common channels to location degrees.
sl@0
   123
	*/    
sl@0
   124
	enum TStandardChannels
sl@0
   125
		{
sl@0
   126
		/** Low Frequency Effects Channels */  
sl@0
   127
		ELowFrequencyEffects = -1,
sl@0
   128
		/** Center Channels*/  
sl@0
   129
		ECenter = 0,
sl@0
   130
		/** Right Channels */  
sl@0
   131
		ERight = 45,
sl@0
   132
		/** Right Surround Channels */  
sl@0
   133
		ERightSurround = 90,
sl@0
   134
		/** Right Rear Channels */  
sl@0
   135
		ERightRear = 135,
sl@0
   136
		/** Rear Surround Channels */  
sl@0
   137
		ERearSurround = 180,
sl@0
   138
		/** Left Rear Channels */  
sl@0
   139
		ELeftRear = 225,
sl@0
   140
		/** Left Surround Channels */  
sl@0
   141
		ELeftSurround = 270,
sl@0
   142
		/** Left Channels */  
sl@0
   143
		ELeft = 315
sl@0
   144
		};
sl@0
   145
	};
sl@0
   146
sl@0
   147
sl@0
   148
/**
sl@0
   149
* KGainSawTooth – an explicit 0->aGain sweep, rising linearly. 
sl@0
   150
* If the channel is active, the effective gain drops to 0 ASAP after the request. 
sl@0
   151
* If used when the stream is not in EActive state, this acts as fade-in during the subsequent Activate() transistion.
sl@0
   152
*/
sl@0
   153
const TInt	KUidGainSawToothValue				= 0x10285CDC;
sl@0
   154
const TUid	KUidGainSawTooth					= {KUidGainSawToothValue};
sl@0
   155
sl@0
   156
/**
sl@0
   157
* KGainFadeOut – drop from current to 0, 
sl@0
   158
* dropping linearly over aRampDuration period.
sl@0
   159
*/
sl@0
   160
const TInt	KUidGainFadeOutValue				= 0x10285CDD;
sl@0
   161
const TUid	KUidGainFadeOut						= {KUidGainFadeOutValue};
sl@0
   162
sl@0
   163
/**
sl@0
   164
* KGainRamped – (gradual) change from current gain values to those given in aGain over aRampDuration period
sl@0
   165
*/
sl@0
   166
const TInt	KUidGainRampedValue					= 0x10285CDE;
sl@0
   167
const TUid	KUidGainRamped						= {KUidGainRampedValue};
sl@0
   168
sl@0
   169
/**
sl@0
   170
* KGainContinue – if a previous ramped operation is in progress, 
sl@0
   171
* this continues but the concept of “target gain” is updated 
sl@0
   172
* using the new values. aRampDuration is ignored 
sl@0
   173
* – the previous ramp duration is reused, minus the time already spent ramping.
sl@0
   174
* The smoothness of this operation will depend on the implementation. 
sl@0
   175
* If no ramped operation is in progress, this is the same as KNullUid. 
sl@0
   176
* This is intended as a way of changing gain values without stopping an ongoing ramp operation.
sl@0
   177
*/
sl@0
   178
const TInt	KUidGainContinueValue				= 0x10285CDF;
sl@0
   179
const TUid	KUidGainContinue					= {KUidGainContinueValue};
sl@0
   180
sl@0
   181
sl@0
   182
const TInt KErrA3fUnsupportedRamp = (-12250);
sl@0
   183
sl@0
   184
/**
sl@0
   185
 * Represents an unique Id for a specific context at runtime.
sl@0
   186
 */
sl@0
   187
class TAudioContextId : public TObjectId 
sl@0
   188
	{
sl@0
   189
public:
sl@0
   190
	/**
sl@0
   191
	 *Default constructor.
sl@0
   192
	 */
sl@0
   193
	TAudioContextId() {}
sl@0
   194
sl@0
   195
	/**
sl@0
   196
	 *Unique Id for a specific context at runtime.
sl@0
   197
	 *@param aId Unique id to be set.
sl@0
   198
	 */
sl@0
   199
	inline TAudioContextId(TUint64 aId) : TObjectId(aId) {}
sl@0
   200
	};
sl@0
   201
	
sl@0
   202
/**
sl@0
   203
 * Represents an unique Id for a specific audio processing unit at runtime.
sl@0
   204
 */
sl@0
   205
class TAudioComponentId : public TObjectId 
sl@0
   206
	{
sl@0
   207
	public:
sl@0
   208
	/**
sl@0
   209
	 * Default constructor.
sl@0
   210
	 */
sl@0
   211
	TAudioComponentId() {}
sl@0
   212
sl@0
   213
	/**
sl@0
   214
	 *Unique Id for a specific audio processing unit at runtime.
sl@0
   215
	 *@param aId Unique id to be set.
sl@0
   216
	 */
sl@0
   217
	inline TAudioComponentId(TUint64 aId) : TObjectId(aId) {}
sl@0
   218
	}; 
sl@0
   219
sl@0
   220
/**
sl@0
   221
 * Represents an unique Id for a specific audio stream unit at runtime.
sl@0
   222
 */
sl@0
   223
class TAudioStreamId : public TObjectId 
sl@0
   224
	{
sl@0
   225
	public:
sl@0
   226
	/**
sl@0
   227
	 * Default constructor.
sl@0
   228
	 */
sl@0
   229
	TAudioStreamId() {}
sl@0
   230
sl@0
   231
	/**
sl@0
   232
	 *Unique Id for a specific stream at runtime.
sl@0
   233
	 *@param aId Unique id to be set.
sl@0
   234
	 */
sl@0
   235
	inline TAudioStreamId(TUint64 aId) : TObjectId(aId) {}
sl@0
   236
	}; 
sl@0
   237
sl@0
   238
sl@0
   239
#endif // A3FBASE_H