sl@0
|
1 |
// Copyright (c) 2001-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 |
#ifndef SOUNDDEVICEBODY_INL
|
sl@0
|
17 |
#define SOUNDDEVICEBODY_INL
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <mmf/plugin/devsoundplugin.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
/*
|
sl@0
|
22 |
* -doxygen comments moved to header-
|
sl@0
|
23 |
*
|
sl@0
|
24 |
* Initializes CMMFDevSound::CBody object to play and record PCM16 raw audio data
|
sl@0
|
25 |
* with sampling rate of 8 KHz.
|
sl@0
|
26 |
*
|
sl@0
|
27 |
* On completion of Initialization, calls InitializeComplete() on
|
sl@0
|
28 |
* aDevSoundObserver.
|
sl@0
|
29 |
*
|
sl@0
|
30 |
* Leaves on failure.
|
sl@0
|
31 |
*
|
sl@0
|
32 |
* @param "aDevSoundObserver"
|
sl@0
|
33 |
* A reference to DevSound Observer instance.
|
sl@0
|
34 |
*
|
sl@0
|
35 |
* @param "aMode"
|
sl@0
|
36 |
* Mode for which this object will be used.
|
sl@0
|
37 |
*
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
inline void CMMFDevSound::CBody::InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode)
|
sl@0
|
40 |
|
sl@0
|
41 |
{
|
sl@0
|
42 |
iPlugin->InitializeL(aDevSoundObserver,aMode);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
/*
|
sl@0
|
46 |
* -doxygen comments moved to header-
|
sl@0
|
47 |
*
|
sl@0
|
48 |
* Initializes DevSound object for the mode aMode for processing audio data
|
sl@0
|
49 |
* with hardware device aHWDev.
|
sl@0
|
50 |
*
|
sl@0
|
51 |
* On completion of Initialization, the observer will be notified via call back
|
sl@0
|
52 |
* InitializeComplete().
|
sl@0
|
53 |
*
|
sl@0
|
54 |
* Leaves on failure.
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* @param "aDevSoundObserver"
|
sl@0
|
57 |
* A reference to DevSound Observer instance.
|
sl@0
|
58 |
*
|
sl@0
|
59 |
* @param "aHWDev"
|
sl@0
|
60 |
* CMMFHwDevice implementation identifier.
|
sl@0
|
61 |
*
|
sl@0
|
62 |
* @param "aMode"
|
sl@0
|
63 |
* Mode for which this object will be used.
|
sl@0
|
64 |
*
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
inline void CMMFDevSound::CBody::InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
iPlugin->InitializeL(aDevSoundObserver, aHWDev, aMode);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/*
|
sl@0
|
72 |
* -doxygen comments moved to header-
|
sl@0
|
73 |
*
|
sl@0
|
74 |
* Initializes DevSound object for the mode aMode for processing audio data
|
sl@0
|
75 |
* with hardware device supporting FourCC aDesiredFourCC.
|
sl@0
|
76 |
*
|
sl@0
|
77 |
* On completion of Initialization, the observer will be notified via call back
|
sl@0
|
78 |
* InitializeComplete().
|
sl@0
|
79 |
*
|
sl@0
|
80 |
* Leaves on failure.
|
sl@0
|
81 |
*
|
sl@0
|
82 |
* @param "aDevSoundObserver"
|
sl@0
|
83 |
* A reference to DevSound Observer instance.
|
sl@0
|
84 |
*
|
sl@0
|
85 |
* @param "aDesiredFourCC"
|
sl@0
|
86 |
* CMMFHwDevice implementation FourCC.
|
sl@0
|
87 |
*
|
sl@0
|
88 |
* @param "aMode"
|
sl@0
|
89 |
* Mode for which this object will be used.
|
sl@0
|
90 |
*
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
inline void CMMFDevSound::CBody::InitializeL(MDevSoundObserver& aDevSoundObserver,
|
sl@0
|
93 |
TFourCC aDesiredFourCC, TMMFState aMode)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
iPlugin->InitializeL(aDevSoundObserver, aDesiredFourCC, aMode);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
/*
|
sl@0
|
99 |
* -doxygen comments moved to header-
|
sl@0
|
100 |
*
|
sl@0
|
101 |
* Returns the supported Audio settings.
|
sl@0
|
102 |
*
|
sl@0
|
103 |
* @return "TMMFCapabilities"
|
sl@0
|
104 |
* Device settings.
|
sl@0
|
105 |
*
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
inline TMMFCapabilities CMMFDevSound::CBody::Capabilities()
|
sl@0
|
108 |
{
|
sl@0
|
109 |
return iPlugin->Capabilities();
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
/*
|
sl@0
|
113 |
* -doxygen comments moved to header-
|
sl@0
|
114 |
*
|
sl@0
|
115 |
* Returns the current audio settings.
|
sl@0
|
116 |
*
|
sl@0
|
117 |
* @return "TMMFCapabilities"
|
sl@0
|
118 |
* Device settings.
|
sl@0
|
119 |
*
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
inline TMMFCapabilities CMMFDevSound::CBody::Config() const
|
sl@0
|
122 |
{
|
sl@0
|
123 |
return iPlugin->Config();
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
/*
|
sl@0
|
127 |
* -doxygen comments moved to header-
|
sl@0
|
128 |
*
|
sl@0
|
129 |
* Configure CMMFDevSound::CBody object for the settings in aConfig.
|
sl@0
|
130 |
*
|
sl@0
|
131 |
* Use this to set sampling rate, Encoding and Mono/Stereo.
|
sl@0
|
132 |
*
|
sl@0
|
133 |
* @param "aConfig"
|
sl@0
|
134 |
* Attribute values to which CMMFDevSound::CBody object will be configured to.
|
sl@0
|
135 |
*
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
inline void CMMFDevSound::CBody::SetConfigL(const TMMFCapabilities& aConfig)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
iPlugin->SetConfigL(aConfig);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
/*
|
sl@0
|
143 |
* -doxygen comments moved to header-
|
sl@0
|
144 |
*
|
sl@0
|
145 |
* Returns an integer representing the maximum volume.
|
sl@0
|
146 |
*
|
sl@0
|
147 |
* This is the maximum value which can be passed to CMMFDevSound::CBody::SetVolume.
|
sl@0
|
148 |
*
|
sl@0
|
149 |
* @return "TInt"
|
sl@0
|
150 |
* The maximum volume. This value is platform dependent but is always
|
sl@0
|
151 |
* greater than or equal to one.
|
sl@0
|
152 |
*
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
inline TInt CMMFDevSound::CBody::MaxVolume()
|
sl@0
|
155 |
{
|
sl@0
|
156 |
return iPlugin->MaxVolume();
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
/*
|
sl@0
|
160 |
* -doxygen comments moved to header-
|
sl@0
|
161 |
*
|
sl@0
|
162 |
* Returns an integer representing the current volume.
|
sl@0
|
163 |
*
|
sl@0
|
164 |
* @return "TInt"
|
sl@0
|
165 |
* The current volume level.
|
sl@0
|
166 |
*
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
inline TInt CMMFDevSound::CBody::Volume()
|
sl@0
|
169 |
{
|
sl@0
|
170 |
return iPlugin->Volume();
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
/*
|
sl@0
|
174 |
* -doxygen comments moved to header-
|
sl@0
|
175 |
*
|
sl@0
|
176 |
* Changes the current playback volume to a specified value.
|
sl@0
|
177 |
*
|
sl@0
|
178 |
* The volume can be changed before or during playback and is effective
|
sl@0
|
179 |
* immediately.
|
sl@0
|
180 |
*
|
sl@0
|
181 |
* @param "aVolume"
|
sl@0
|
182 |
* The volume setting. This can be any value from zero to the value
|
sl@0
|
183 |
* returned by a call to CMMFDevSound::CBody::MaxVolume(). If the
|
sl@0
|
184 |
* volume is not within this range, the volume is automatically set to
|
sl@0
|
185 |
* minimum or maximum value based on the value that is being passed.
|
sl@0
|
186 |
* Setting a zero value mutes the sound. Setting the maximum value
|
sl@0
|
187 |
* results in the loudest possible sound.
|
sl@0
|
188 |
*
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
inline void CMMFDevSound::CBody::SetVolume(TInt aVolume)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
iPlugin->SetVolume(aVolume);
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
/*
|
sl@0
|
196 |
* -doxygen comments moved to header-
|
sl@0
|
197 |
*
|
sl@0
|
198 |
* Returns an integer representing the maximum gain.
|
sl@0
|
199 |
*
|
sl@0
|
200 |
* This is the maximum value which can be passed to CMMFDevSound::CBody::SetGain.
|
sl@0
|
201 |
*
|
sl@0
|
202 |
* @return "TInt"
|
sl@0
|
203 |
* The maximum gain. This value is platform dependent but is always
|
sl@0
|
204 |
* greater than or equal to one.
|
sl@0
|
205 |
*
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
inline TInt CMMFDevSound::CBody::MaxGain()
|
sl@0
|
208 |
{
|
sl@0
|
209 |
return iPlugin->MaxGain();
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
/*
|
sl@0
|
213 |
* -doxygen comments moved to header-
|
sl@0
|
214 |
*
|
sl@0
|
215 |
* Returns an integer representing the current gain.
|
sl@0
|
216 |
*
|
sl@0
|
217 |
* @return "TInt"
|
sl@0
|
218 |
* The current gain level.
|
sl@0
|
219 |
*
|
sl@0
|
220 |
*/
|
sl@0
|
221 |
inline TInt CMMFDevSound::CBody::Gain()
|
sl@0
|
222 |
{
|
sl@0
|
223 |
return iPlugin->Gain();
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
/*
|
sl@0
|
227 |
* -doxygen comments moved to header-
|
sl@0
|
228 |
*
|
sl@0
|
229 |
* Changes the current recording gain to a specified value.
|
sl@0
|
230 |
*
|
sl@0
|
231 |
* The gain can be changed before or during recording and is effective
|
sl@0
|
232 |
* immediately.
|
sl@0
|
233 |
*
|
sl@0
|
234 |
* @param "TInt aGain"
|
sl@0
|
235 |
* The gain setting. This can be any value from zero to the value
|
sl@0
|
236 |
* returned by a call to CMMFDevSound::CBody::MaxGain(). If the
|
sl@0
|
237 |
* volume is not within this range, the gain is automatically set to
|
sl@0
|
238 |
* minimum or maximum value based on the value that is being passed.
|
sl@0
|
239 |
* Setting a zero value mutes the sound. Setting the maximum value
|
sl@0
|
240 |
* results in the loudest possible sound.
|
sl@0
|
241 |
*
|
sl@0
|
242 |
*/
|
sl@0
|
243 |
inline void CMMFDevSound::CBody::SetGain(TInt aGain)
|
sl@0
|
244 |
{
|
sl@0
|
245 |
iPlugin->SetGain(aGain);
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
/*
|
sl@0
|
249 |
* -doxygen comments moved to header-
|
sl@0
|
250 |
*
|
sl@0
|
251 |
* Returns the speaker balance set for playing.
|
sl@0
|
252 |
*
|
sl@0
|
253 |
* Leaves on failure.
|
sl@0
|
254 |
*
|
sl@0
|
255 |
* @param "aLeftPrecentage"
|
sl@0
|
256 |
* On return contains the left speaker volume percentage.
|
sl@0
|
257 |
*
|
sl@0
|
258 |
* @param "aRightPercentage"
|
sl@0
|
259 |
* On return contains the right speaker volume percentage.
|
sl@0
|
260 |
*
|
sl@0
|
261 |
*/
|
sl@0
|
262 |
inline void CMMFDevSound::CBody::GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
|
sl@0
|
263 |
{
|
sl@0
|
264 |
iPlugin->GetPlayBalanceL(aLeftPercentage, aRightPercentage);
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
/*
|
sl@0
|
268 |
* -doxygen comments moved to header-
|
sl@0
|
269 |
*
|
sl@0
|
270 |
* Sets the speaker balance for playing.
|
sl@0
|
271 |
*
|
sl@0
|
272 |
* The speaker balance can be changed before or during playback and is
|
sl@0
|
273 |
* effective immediately.
|
sl@0
|
274 |
*
|
sl@0
|
275 |
* @param "aLeftPercentage"
|
sl@0
|
276 |
* On return contains left speaker volume perecentage. This can be any
|
sl@0
|
277 |
* value from zero to 100. Setting a zero value mutes the sound on left
|
sl@0
|
278 |
* speaker.
|
sl@0
|
279 |
*
|
sl@0
|
280 |
* @param "aRightPercentage"
|
sl@0
|
281 |
* On return contains right speaker volume perecentage. This can be any
|
sl@0
|
282 |
* value from zero to 100. Setting a zero value mutes the sound on
|
sl@0
|
283 |
* right speaker.
|
sl@0
|
284 |
*
|
sl@0
|
285 |
*/
|
sl@0
|
286 |
inline void CMMFDevSound::CBody::SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
|
sl@0
|
287 |
{
|
sl@0
|
288 |
iPlugin->SetPlayBalanceL(aLeftPercentage, aRightPercentage);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
/*
|
sl@0
|
292 |
* -doxygen comments moved to header-
|
sl@0
|
293 |
*
|
sl@0
|
294 |
* Returns the microphone gain balance set for recording.
|
sl@0
|
295 |
*
|
sl@0
|
296 |
* Leaves on failure.
|
sl@0
|
297 |
*
|
sl@0
|
298 |
* @param "aLeftPercentage"
|
sl@0
|
299 |
* On return contains the left microphone gain percentage.
|
sl@0
|
300 |
*
|
sl@0
|
301 |
* @param "aRightPercentage"
|
sl@0
|
302 |
* On return contains the right microphone gain percentage.
|
sl@0
|
303 |
*
|
sl@0
|
304 |
*/
|
sl@0
|
305 |
inline void CMMFDevSound::CBody::GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
iPlugin->GetRecordBalanceL(aLeftPercentage, aRightPercentage);
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
/*
|
sl@0
|
311 |
* -doxygen comments moved to header-
|
sl@0
|
312 |
*
|
sl@0
|
313 |
* Sets the microphone gain balance for recording.
|
sl@0
|
314 |
*
|
sl@0
|
315 |
* The microphone gain balance can be changed before or during recording and
|
sl@0
|
316 |
* is effective immediately.
|
sl@0
|
317 |
*
|
sl@0
|
318 |
* @param "aLeftPercentage"
|
sl@0
|
319 |
* Left microphone gain precentage. This can be any value from zero to
|
sl@0
|
320 |
* 100. Setting a zero value mutes the gain on left microphone.
|
sl@0
|
321 |
*
|
sl@0
|
322 |
* @param "aRightPercentage"
|
sl@0
|
323 |
* Right microphone gain precentage. This can be any value from zero to
|
sl@0
|
324 |
* 100. Setting a zero value mutes the gain on right microphone.
|
sl@0
|
325 |
*
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
inline void CMMFDevSound::CBody::SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
iPlugin->SetRecordBalanceL(aLeftPercentage, aRightPercentage);
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
/*
|
sl@0
|
333 |
* -doxygen comments moved to header-
|
sl@0
|
334 |
*
|
sl@0
|
335 |
* Initializes audio device and start play process. This method queries and
|
sl@0
|
336 |
* acquires the audio policy before initializing audio device. If there was an
|
sl@0
|
337 |
* error during policy initialization, PlayError() method will be called on
|
sl@0
|
338 |
* the observer with error code KErrAccessDenied, otherwise BufferToBeFilled()
|
sl@0
|
339 |
* method will be called with a buffer reference. After reading data into the
|
sl@0
|
340 |
* buffer reference passed, the client should call PlayData() to play data.
|
sl@0
|
341 |
*
|
sl@0
|
342 |
* The amount of data that can be played is specified in
|
sl@0
|
343 |
* CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
|
sl@0
|
344 |
* size will be ignored.
|
sl@0
|
345 |
*
|
sl@0
|
346 |
* Leaves on failure.
|
sl@0
|
347 |
*
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
inline void CMMFDevSound::CBody::PlayInitL()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
iPlugin->PlayInitL();
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
/*
|
sl@0
|
355 |
* -doxygen comments moved to header-
|
sl@0
|
356 |
*
|
sl@0
|
357 |
* Initializes audio device and start record process. This method queries and
|
sl@0
|
358 |
* acquires the audio policy before initializing audio device. If there was an
|
sl@0
|
359 |
* error during policy initialization, RecordError() method will be called on
|
sl@0
|
360 |
* the observer with error code KErrAccessDenied, otherwise BufferToBeEmptied()
|
sl@0
|
361 |
* method will be called with a buffer reference. This buffer contains recorded
|
sl@0
|
362 |
* or encoded data. After processing data in the buffer reference passed, the
|
sl@0
|
363 |
* client should call RecordData() to continue recording process.
|
sl@0
|
364 |
*
|
sl@0
|
365 |
* The amount of data that is available is specified in
|
sl@0
|
366 |
* CMMFBuffer::RequestSize().
|
sl@0
|
367 |
*
|
sl@0
|
368 |
* Leaves on failure.
|
sl@0
|
369 |
*
|
sl@0
|
370 |
*/
|
sl@0
|
371 |
inline void CMMFDevSound::CBody::RecordInitL()
|
sl@0
|
372 |
{
|
sl@0
|
373 |
iPlugin->RecordInitL();
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
/*
|
sl@0
|
377 |
* -doxygen comments moved to header-
|
sl@0
|
378 |
*
|
sl@0
|
379 |
* Plays data in the buffer at the current volume. The client should fill
|
sl@0
|
380 |
* the buffer with audio data before calling this method. The Observer gets
|
sl@0
|
381 |
* reference to buffer along with callback BufferToBeFilled(). When playing of
|
sl@0
|
382 |
* the audio sample is complete, successfully or otherwise, the method
|
sl@0
|
383 |
* PlayError() on observer is called.
|
sl@0
|
384 |
*
|
sl@0
|
385 |
*/
|
sl@0
|
386 |
inline void CMMFDevSound::CBody::PlayData()
|
sl@0
|
387 |
{
|
sl@0
|
388 |
iPlugin->PlayData();
|
sl@0
|
389 |
}
|
sl@0
|
390 |
|
sl@0
|
391 |
/*
|
sl@0
|
392 |
* -doxygen comments moved to header-
|
sl@0
|
393 |
*
|
sl@0
|
394 |
* Contine the process of recording. Once the buffer is filled with recorded
|
sl@0
|
395 |
* data, the Observer gets reference to buffer along with callback
|
sl@0
|
396 |
* BufferToBeEmptied(). After processing the buffer (copying over to a
|
sl@0
|
397 |
* different buffer or writing to file) the client should call this
|
sl@0
|
398 |
* method to continue recording process.
|
sl@0
|
399 |
*
|
sl@0
|
400 |
*/
|
sl@0
|
401 |
inline void CMMFDevSound::CBody::RecordData()
|
sl@0
|
402 |
{
|
sl@0
|
403 |
iPlugin->RecordData();
|
sl@0
|
404 |
}
|
sl@0
|
405 |
|
sl@0
|
406 |
/*
|
sl@0
|
407 |
* -doxygen comments moved to header-
|
sl@0
|
408 |
*
|
sl@0
|
409 |
* Stops the ongoing operation (Play, Record, TonePlay, Convert)
|
sl@0
|
410 |
*
|
sl@0
|
411 |
*/
|
sl@0
|
412 |
inline void CMMFDevSound::CBody::Stop()
|
sl@0
|
413 |
{
|
sl@0
|
414 |
iPlugin->Stop();
|
sl@0
|
415 |
}
|
sl@0
|
416 |
|
sl@0
|
417 |
/*
|
sl@0
|
418 |
* -doxygen comments moved to header-
|
sl@0
|
419 |
*
|
sl@0
|
420 |
* Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert)
|
sl@0
|
421 |
*
|
sl@0
|
422 |
*/
|
sl@0
|
423 |
inline void CMMFDevSound::CBody::Pause()
|
sl@0
|
424 |
{
|
sl@0
|
425 |
iPlugin->Pause();
|
sl@0
|
426 |
}
|
sl@0
|
427 |
|
sl@0
|
428 |
/*
|
sl@0
|
429 |
* -doxygen comments moved to header-
|
sl@0
|
430 |
*
|
sl@0
|
431 |
* Returns the sample recorded so far.
|
sl@0
|
432 |
*
|
sl@0
|
433 |
* @return "TInt"
|
sl@0
|
434 |
* Returns the samples recorded.
|
sl@0
|
435 |
*
|
sl@0
|
436 |
*/
|
sl@0
|
437 |
inline TInt CMMFDevSound::CBody::SamplesRecorded()
|
sl@0
|
438 |
{
|
sl@0
|
439 |
return iPlugin->SamplesRecorded();
|
sl@0
|
440 |
}
|
sl@0
|
441 |
|
sl@0
|
442 |
/*
|
sl@0
|
443 |
* -doxygen comments moved to header-
|
sl@0
|
444 |
*
|
sl@0
|
445 |
* Returns the sample played so far.
|
sl@0
|
446 |
*
|
sl@0
|
447 |
* @return "TInt"
|
sl@0
|
448 |
* Returns the samples recorded.
|
sl@0
|
449 |
*
|
sl@0
|
450 |
*/
|
sl@0
|
451 |
inline TInt CMMFDevSound::CBody::SamplesPlayed()
|
sl@0
|
452 |
{
|
sl@0
|
453 |
return iPlugin->SamplesPlayed();
|
sl@0
|
454 |
}
|
sl@0
|
455 |
|
sl@0
|
456 |
|
sl@0
|
457 |
/*
|
sl@0
|
458 |
* -doxygen comments moved to header-
|
sl@0
|
459 |
*
|
sl@0
|
460 |
* Initializes audio device and start playing tone. Tone is played with
|
sl@0
|
461 |
* frequency and for duration specified.
|
sl@0
|
462 |
*
|
sl@0
|
463 |
* Leaves on failure.
|
sl@0
|
464 |
*
|
sl@0
|
465 |
* @param "aFrequency"
|
sl@0
|
466 |
* Frequency at with the tone will be played.
|
sl@0
|
467 |
*
|
sl@0
|
468 |
* @param "aDuration"
|
sl@0
|
469 |
* The period over which the tone will be played. A zero value causes
|
sl@0
|
470 |
* the no tone to be played (Verify this with test app).
|
sl@0
|
471 |
*
|
sl@0
|
472 |
*/
|
sl@0
|
473 |
inline void CMMFDevSound::CBody::PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration)
|
sl@0
|
474 |
{
|
sl@0
|
475 |
iPlugin->PlayToneL(aFrequency, aDuration);
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|
sl@0
|
478 |
/*
|
sl@0
|
479 |
* -doxygen comments moved to header-
|
sl@0
|
480 |
*
|
sl@0
|
481 |
* Initializes audio device and start playing a dual tone.
|
sl@0
|
482 |
* The tone consists of two sine waves of different frequencies summed together
|
sl@0
|
483 |
* Dual Tone is played with specified frequencies and for specified duration.
|
sl@0
|
484 |
*
|
sl@0
|
485 |
* @param "aFrequencyOne"
|
sl@0
|
486 |
* First frequency of dual tone
|
sl@0
|
487 |
*
|
sl@0
|
488 |
* @param "aFrequencyTwo"
|
sl@0
|
489 |
* Second frequency of dual tone
|
sl@0
|
490 |
*
|
sl@0
|
491 |
* @param "aDuration"
|
sl@0
|
492 |
* The period over which the tone will be played. A zero value causes
|
sl@0
|
493 |
* the no tone to be played (Verify this with test app).
|
sl@0
|
494 |
*/
|
sl@0
|
495 |
inline void CMMFDevSound::CBody::PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration)
|
sl@0
|
496 |
{
|
sl@0
|
497 |
iPlugin->PlayDualToneL(aFrequencyOne, aFrequencyTwo, aDuration);
|
sl@0
|
498 |
}
|
sl@0
|
499 |
|
sl@0
|
500 |
/*
|
sl@0
|
501 |
* -doxygen comments moved to header-
|
sl@0
|
502 |
*
|
sl@0
|
503 |
* Initializes audio device and start playing DTMF string aDTMFString.
|
sl@0
|
504 |
*
|
sl@0
|
505 |
* Leaves on failure.
|
sl@0
|
506 |
*
|
sl@0
|
507 |
* @param "aDTMFString"
|
sl@0
|
508 |
* DTMF sequence in a descriptor.
|
sl@0
|
509 |
*
|
sl@0
|
510 |
*/
|
sl@0
|
511 |
inline void CMMFDevSound::CBody::PlayDTMFStringL(const TDesC& aDTMFString)
|
sl@0
|
512 |
{
|
sl@0
|
513 |
iPlugin->PlayDTMFStringL(aDTMFString);
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
/*
|
sl@0
|
517 |
* -doxygen comments moved to header-
|
sl@0
|
518 |
*
|
sl@0
|
519 |
* Initializes audio device and start playing tone sequence.
|
sl@0
|
520 |
*
|
sl@0
|
521 |
* Leaves on failure.
|
sl@0
|
522 |
*
|
sl@0
|
523 |
* @param "TDesC8& aData"
|
sl@0
|
524 |
* Tone sequence in a descriptor.
|
sl@0
|
525 |
*
|
sl@0
|
526 |
*/
|
sl@0
|
527 |
inline void CMMFDevSound::CBody::PlayToneSequenceL(const TDesC8& aData)
|
sl@0
|
528 |
{
|
sl@0
|
529 |
iPlugin->PlayToneSequenceL(aData);
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
/*
|
sl@0
|
533 |
* -doxygen comments moved to header-
|
sl@0
|
534 |
*
|
sl@0
|
535 |
* Initializes audio device and start playing the specified pre-defined tone
|
sl@0
|
536 |
* sequence.
|
sl@0
|
537 |
*
|
sl@0
|
538 |
* Leaves on failure.
|
sl@0
|
539 |
*
|
sl@0
|
540 |
* @param "aSequenceNumber"
|
sl@0
|
541 |
* The index identifying the specific pre-defined tone sequence. Index
|
sl@0
|
542 |
* values are relative to zero.
|
sl@0
|
543 |
* This can be any value from zero to the value returned by a call to
|
sl@0
|
544 |
* FixedSequenceCount() - 1.
|
sl@0
|
545 |
* The function raises a panic if sequence number is not within this
|
sl@0
|
546 |
* range.
|
sl@0
|
547 |
* @see FixedSequenceCount()
|
sl@0
|
548 |
*
|
sl@0
|
549 |
*/
|
sl@0
|
550 |
inline void CMMFDevSound::CBody::PlayFixedSequenceL(TInt aSequenceNumber)
|
sl@0
|
551 |
{
|
sl@0
|
552 |
iPlugin->PlayFixedSequenceL(aSequenceNumber);
|
sl@0
|
553 |
}
|
sl@0
|
554 |
|
sl@0
|
555 |
/*
|
sl@0
|
556 |
* -doxygen comments moved to header-
|
sl@0
|
557 |
*
|
sl@0
|
558 |
* Defines the number of times the audio is to be repeated during the tone
|
sl@0
|
559 |
* playback operation.
|
sl@0
|
560 |
*
|
sl@0
|
561 |
* A period of silence can follow each playing of tone. The tone playing can
|
sl@0
|
562 |
* be repeated indefinitely.
|
sl@0
|
563 |
*
|
sl@0
|
564 |
* @param " aRepeatCount"
|
sl@0
|
565 |
* The number of times the tone, together with the trailing silence,
|
sl@0
|
566 |
* is to be repeated. If this is set to KMdaRepeatForever, then the
|
sl@0
|
567 |
* tone, together with the trailing silence, is repeated indefinitely
|
sl@0
|
568 |
* or until Stop() is called. If this is set to zero, then the tone is
|
sl@0
|
569 |
* not repeated.
|
sl@0
|
570 |
*
|
sl@0
|
571 |
* Supported only during tone playing.
|
sl@0
|
572 |
*
|
sl@0
|
573 |
*/
|
sl@0
|
574 |
inline void CMMFDevSound::CBody::SetToneRepeats(TInt aRepeatCount,
|
sl@0
|
575 |
const TTimeIntervalMicroSeconds& aRepeatTrailingSilence)
|
sl@0
|
576 |
{
|
sl@0
|
577 |
iPlugin->SetToneRepeats(aRepeatCount, aRepeatTrailingSilence);
|
sl@0
|
578 |
}
|
sl@0
|
579 |
|
sl@0
|
580 |
/*
|
sl@0
|
581 |
* -doxygen comments moved to header-
|
sl@0
|
582 |
*
|
sl@0
|
583 |
* Defines the duration of tone on, tone off and tone pause to be used during the
|
sl@0
|
584 |
* DTMF tone playback operation.
|
sl@0
|
585 |
*
|
sl@0
|
586 |
* Supported only during tone playing.
|
sl@0
|
587 |
*
|
sl@0
|
588 |
* @param "aToneOnLength"
|
sl@0
|
589 |
* The period over which the tone will be played. If this is set to
|
sl@0
|
590 |
* zero, then the tone is not played.
|
sl@0
|
591 |
*
|
sl@0
|
592 |
* @param "aToneOffLength"
|
sl@0
|
593 |
* The period over which the no tone will be played.
|
sl@0
|
594 |
*
|
sl@0
|
595 |
* @param "aPauseLength"
|
sl@0
|
596 |
* The period over which the tone playing will be paused.
|
sl@0
|
597 |
*
|
sl@0
|
598 |
*/
|
sl@0
|
599 |
inline void CMMFDevSound::CBody::SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
|
sl@0
|
600 |
TTimeIntervalMicroSeconds32& aToneOffLength,
|
sl@0
|
601 |
TTimeIntervalMicroSeconds32& aPauseLength)
|
sl@0
|
602 |
{
|
sl@0
|
603 |
iPlugin->SetDTMFLengths(aToneOnLength, aToneOffLength, aPauseLength);
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
/*
|
sl@0
|
607 |
* -doxygen comments moved to header-
|
sl@0
|
608 |
*
|
sl@0
|
609 |
* Defines the period over which the volume level is to rise smoothly from
|
sl@0
|
610 |
* nothing to the normal volume level.
|
sl@0
|
611 |
*
|
sl@0
|
612 |
* @param "aRampDuration"
|
sl@0
|
613 |
* The period over which the volume is to rise. A zero value causes
|
sl@0
|
614 |
* the tone sample to be played at the normal level for the full
|
sl@0
|
615 |
* duration of the playback. A value, which is longer than the duration
|
sl@0
|
616 |
* of the tone sample, that the sample never reaches its normal
|
sl@0
|
617 |
* volume level.
|
sl@0
|
618 |
*
|
sl@0
|
619 |
*
|
sl@0
|
620 |
*/
|
sl@0
|
621 |
inline void CMMFDevSound::CBody::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration)
|
sl@0
|
622 |
{
|
sl@0
|
623 |
iPlugin->SetVolumeRamp(aRampDuration);
|
sl@0
|
624 |
}
|
sl@0
|
625 |
|
sl@0
|
626 |
/*
|
sl@0
|
627 |
* -doxygen comments moved to header-
|
sl@0
|
628 |
*
|
sl@0
|
629 |
* Defines the priority settings that should be used for this instance.
|
sl@0
|
630 |
*
|
sl@0
|
631 |
* @param "aPrioritySettings"
|
sl@0
|
632 |
* An class type representing the client's priority, priority
|
sl@0
|
633 |
* preference and state.
|
sl@0
|
634 |
*
|
sl@0
|
635 |
*/
|
sl@0
|
636 |
inline void CMMFDevSound::CBody::SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings)
|
sl@0
|
637 |
{
|
sl@0
|
638 |
iPlugin->SetPrioritySettings(aPrioritySettings);
|
sl@0
|
639 |
}
|
sl@0
|
640 |
|
sl@0
|
641 |
inline TAny* CMMFDevSound::CBody::CustomInterface(TUid aInterface)
|
sl@0
|
642 |
{
|
sl@0
|
643 |
return iPlugin->CustomInterface(aInterface);
|
sl@0
|
644 |
}
|
sl@0
|
645 |
|
sl@0
|
646 |
/*
|
sl@0
|
647 |
* -doxygen comments moved to header-
|
sl@0
|
648 |
*
|
sl@0
|
649 |
* Returns the number of available pre-defined tone sequences.
|
sl@0
|
650 |
*
|
sl@0
|
651 |
* This is the number of fixed sequence supported by DevSound by default.
|
sl@0
|
652 |
*
|
sl@0
|
653 |
* @return "TInt"
|
sl@0
|
654 |
* The fixed sequence count. This value is implementation dependent
|
sl@0
|
655 |
* but is always greater than or equal to zero.
|
sl@0
|
656 |
*
|
sl@0
|
657 |
*/
|
sl@0
|
658 |
inline TInt CMMFDevSound::CBody::FixedSequenceCount()
|
sl@0
|
659 |
{
|
sl@0
|
660 |
return iPlugin->FixedSequenceCount();
|
sl@0
|
661 |
}
|
sl@0
|
662 |
|
sl@0
|
663 |
/*
|
sl@0
|
664 |
* -doxygen comments moved to header-
|
sl@0
|
665 |
*
|
sl@0
|
666 |
* Returns the name assigned to a specific pre-defined tone sequence.
|
sl@0
|
667 |
*
|
sl@0
|
668 |
* This is the number of fixed sequence supported by DevSound by default.
|
sl@0
|
669 |
*
|
sl@0
|
670 |
* The function raises a panic if sequence number specified invalid.
|
sl@0
|
671 |
*
|
sl@0
|
672 |
* @return "TDesC&"
|
sl@0
|
673 |
* A reference to a Descriptor containing the fixed sequence
|
sl@0
|
674 |
* name indexed by aSequenceNumber.
|
sl@0
|
675 |
*
|
sl@0
|
676 |
* @param "aSequenceNumber"
|
sl@0
|
677 |
* The index identifying the specific pre-defined tone sequence. Index
|
sl@0
|
678 |
* values are relative to zero.
|
sl@0
|
679 |
* This can be any value from zero to the value returned by a call to
|
sl@0
|
680 |
* FixedSequenceCount() - 1.
|
sl@0
|
681 |
* The function raises a panic if sequence number is not within this
|
sl@0
|
682 |
* range.
|
sl@0
|
683 |
*
|
sl@0
|
684 |
* @see FixedSequenceCount()
|
sl@0
|
685 |
*
|
sl@0
|
686 |
*/
|
sl@0
|
687 |
inline const TDesC& CMMFDevSound::CBody::FixedSequenceName(TInt aSequenceNumber)
|
sl@0
|
688 |
{
|
sl@0
|
689 |
return iPlugin->FixedSequenceName(aSequenceNumber);
|
sl@0
|
690 |
}
|
sl@0
|
691 |
|
sl@0
|
692 |
|
sl@0
|
693 |
/*
|
sl@0
|
694 |
* -doxygen comments in header-
|
sl@0
|
695 |
*/
|
sl@0
|
696 |
inline void CMMFDevSound::CBody::GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes,const TMMFPrioritySettings& aPrioritySettings) const
|
sl@0
|
697 |
{
|
sl@0
|
698 |
iPlugin->GetSupportedInputDataTypesL(aSupportedDataTypes, aPrioritySettings);
|
sl@0
|
699 |
}
|
sl@0
|
700 |
|
sl@0
|
701 |
|
sl@0
|
702 |
/*
|
sl@0
|
703 |
* -doxygen comments in header-
|
sl@0
|
704 |
*/
|
sl@0
|
705 |
inline void CMMFDevSound::CBody::GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const
|
sl@0
|
706 |
{
|
sl@0
|
707 |
iPlugin->GetSupportedOutputDataTypesL(aSupportedDataTypes, aPrioritySettings);
|
sl@0
|
708 |
}
|
sl@0
|
709 |
|
sl@0
|
710 |
#endif // SOUNDDEVICEBODY_INL
|