Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
31 * Provides the process id of the original application.
33 class TClientContextSettings
37 * Application Process Id.
39 TProcessId iProcessId;
48 /**Uninitialized state */
50 /**Initialized state */
63 * Audio type of a stream.
65 class TAudioTypeSettings
74 * The priority preference of client.
81 * Mode setting available.
83 * "Mode" in this context refers to the number of channels (i.e. mono or stereo).
84 * The modes are given as UIDs.
89 const TInt KA3FModeMonoValue = 0x1028348D;
90 const TUid KA3FModeMono = {KA3FModeMonoValue};
91 /** Stereo data, non-interleaved */
92 const TInt KA3FModeStereoNonInterleavedValue = 0x1028348E;
93 const TUid KA3FModeStereoNonInterleaved = {KA3FModeStereoNonInterleavedValue};
94 /** Interleaved Stereo data */
95 const TInt KA3FModeStereoInterleavedValue = 0x1028348F;
96 const TUid KA3FModeStereoInterleaved = {KA3FModeStereoInterleavedValue};
97 /** 5.1 encoded data */
98 const TInt KA3FMode51Value = 0x10283490;
99 const TUid KA3FMode51 = {KA3FMode51Value};
103 * Type class for audio channel.
105 class TAudioChannelGain
109 * Location of the channel in degrees on a circle located on the same plane as the listener,
110 * with listener in the center of the circle.
111 * Negative values are used for channels the location of which is not important.
116 * Absolute gain value of channel.
117 * Allowed values are 0 - MaxGain().
122 * Mapping of common channels to location degrees.
124 enum TStandardChannels
126 /** Low Frequency Effects Channels */
127 ELowFrequencyEffects = -1,
128 /** Center Channels*/
130 /** Right Channels */
132 /** Right Surround Channels */
134 /** Right Rear Channels */
136 /** Rear Surround Channels */
138 /** Left Rear Channels */
140 /** Left Surround Channels */
149 * KGainSawTooth – an explicit 0->aGain sweep, rising linearly.
150 * If the channel is active, the effective gain drops to 0 ASAP after the request.
151 * If used when the stream is not in EActive state, this acts as fade-in during the subsequent Activate() transistion.
153 const TInt KUidGainSawToothValue = 0x10285CDC;
154 const TUid KUidGainSawTooth = {KUidGainSawToothValue};
157 * KGainFadeOut – drop from current to 0,
158 * dropping linearly over aRampDuration period.
160 const TInt KUidGainFadeOutValue = 0x10285CDD;
161 const TUid KUidGainFadeOut = {KUidGainFadeOutValue};
164 * KGainRamped – (gradual) change from current gain values to those given in aGain over aRampDuration period
166 const TInt KUidGainRampedValue = 0x10285CDE;
167 const TUid KUidGainRamped = {KUidGainRampedValue};
170 * KGainContinue – if a previous ramped operation is in progress,
171 * this continues but the concept of “target gain” is updated
172 * using the new values. aRampDuration is ignored
173 * – the previous ramp duration is reused, minus the time already spent ramping.
174 * The smoothness of this operation will depend on the implementation.
175 * If no ramped operation is in progress, this is the same as KNullUid.
176 * This is intended as a way of changing gain values without stopping an ongoing ramp operation.
178 const TInt KUidGainContinueValue = 0x10285CDF;
179 const TUid KUidGainContinue = {KUidGainContinueValue};
182 const TInt KErrA3fUnsupportedRamp = (-12250);
185 * Represents an unique Id for a specific context at runtime.
187 class TAudioContextId : public TObjectId
191 *Default constructor.
196 *Unique Id for a specific context at runtime.
197 *@param aId Unique id to be set.
199 inline TAudioContextId(TUint64 aId) : TObjectId(aId) {}
203 * Represents an unique Id for a specific audio processing unit at runtime.
205 class TAudioComponentId : public TObjectId
209 * Default constructor.
211 TAudioComponentId() {}
214 *Unique Id for a specific audio processing unit at runtime.
215 *@param aId Unique id to be set.
217 inline TAudioComponentId(TUint64 aId) : TObjectId(aId) {}
221 * Represents an unique Id for a specific audio stream unit at runtime.
223 class TAudioStreamId : public TObjectId
227 * Default constructor.
232 *Unique Id for a specific stream at runtime.
233 *@param aId Unique id to be set.
235 inline TAudioStreamId(TUint64 aId) : TObjectId(aId) {}