First public contribution.
1 // Copyright (c) 2001-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.
16 #ifndef SOUNDDEVICEBODY_INL
17 #define SOUNDDEVICEBODY_INL
19 #include <mmf/plugin/devsoundplugin.h>
22 * -doxygen comments moved to header-
24 * Initializes CMMFDevSound::CBody object to play and record PCM16 raw audio data
25 * with sampling rate of 8 KHz.
27 * On completion of Initialization, calls InitializeComplete() on
32 * @param "aDevSoundObserver"
33 * A reference to DevSound Observer instance.
36 * Mode for which this object will be used.
39 inline void CMMFDevSound::CBody::InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode)
42 iPlugin->InitializeL(aDevSoundObserver,aMode);
46 * -doxygen comments moved to header-
48 * Initializes DevSound object for the mode aMode for processing audio data
49 * with hardware device aHWDev.
51 * On completion of Initialization, the observer will be notified via call back
52 * InitializeComplete().
56 * @param "aDevSoundObserver"
57 * A reference to DevSound Observer instance.
60 * CMMFHwDevice implementation identifier.
63 * Mode for which this object will be used.
66 inline void CMMFDevSound::CBody::InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode)
68 iPlugin->InitializeL(aDevSoundObserver, aHWDev, aMode);
72 * -doxygen comments moved to header-
74 * Initializes DevSound object for the mode aMode for processing audio data
75 * with hardware device supporting FourCC aDesiredFourCC.
77 * On completion of Initialization, the observer will be notified via call back
78 * InitializeComplete().
82 * @param "aDevSoundObserver"
83 * A reference to DevSound Observer instance.
85 * @param "aDesiredFourCC"
86 * CMMFHwDevice implementation FourCC.
89 * Mode for which this object will be used.
92 inline void CMMFDevSound::CBody::InitializeL(MDevSoundObserver& aDevSoundObserver,
93 TFourCC aDesiredFourCC, TMMFState aMode)
95 iPlugin->InitializeL(aDevSoundObserver, aDesiredFourCC, aMode);
99 * -doxygen comments moved to header-
101 * Returns the supported Audio settings.
103 * @return "TMMFCapabilities"
107 inline TMMFCapabilities CMMFDevSound::CBody::Capabilities()
109 return iPlugin->Capabilities();
113 * -doxygen comments moved to header-
115 * Returns the current audio settings.
117 * @return "TMMFCapabilities"
121 inline TMMFCapabilities CMMFDevSound::CBody::Config() const
123 return iPlugin->Config();
127 * -doxygen comments moved to header-
129 * Configure CMMFDevSound::CBody object for the settings in aConfig.
131 * Use this to set sampling rate, Encoding and Mono/Stereo.
134 * Attribute values to which CMMFDevSound::CBody object will be configured to.
137 inline void CMMFDevSound::CBody::SetConfigL(const TMMFCapabilities& aConfig)
139 iPlugin->SetConfigL(aConfig);
143 * -doxygen comments moved to header-
145 * Returns an integer representing the maximum volume.
147 * This is the maximum value which can be passed to CMMFDevSound::CBody::SetVolume.
150 * The maximum volume. This value is platform dependent but is always
151 * greater than or equal to one.
154 inline TInt CMMFDevSound::CBody::MaxVolume()
156 return iPlugin->MaxVolume();
160 * -doxygen comments moved to header-
162 * Returns an integer representing the current volume.
165 * The current volume level.
168 inline TInt CMMFDevSound::CBody::Volume()
170 return iPlugin->Volume();
174 * -doxygen comments moved to header-
176 * Changes the current playback volume to a specified value.
178 * The volume can be changed before or during playback and is effective
182 * The volume setting. This can be any value from zero to the value
183 * returned by a call to CMMFDevSound::CBody::MaxVolume(). If the
184 * volume is not within this range, the volume is automatically set to
185 * minimum or maximum value based on the value that is being passed.
186 * Setting a zero value mutes the sound. Setting the maximum value
187 * results in the loudest possible sound.
190 inline void CMMFDevSound::CBody::SetVolume(TInt aVolume)
192 iPlugin->SetVolume(aVolume);
196 * -doxygen comments moved to header-
198 * Returns an integer representing the maximum gain.
200 * This is the maximum value which can be passed to CMMFDevSound::CBody::SetGain.
203 * The maximum gain. This value is platform dependent but is always
204 * greater than or equal to one.
207 inline TInt CMMFDevSound::CBody::MaxGain()
209 return iPlugin->MaxGain();
213 * -doxygen comments moved to header-
215 * Returns an integer representing the current gain.
218 * The current gain level.
221 inline TInt CMMFDevSound::CBody::Gain()
223 return iPlugin->Gain();
227 * -doxygen comments moved to header-
229 * Changes the current recording gain to a specified value.
231 * The gain can be changed before or during recording and is effective
234 * @param "TInt aGain"
235 * The gain setting. This can be any value from zero to the value
236 * returned by a call to CMMFDevSound::CBody::MaxGain(). If the
237 * volume is not within this range, the gain is automatically set to
238 * minimum or maximum value based on the value that is being passed.
239 * Setting a zero value mutes the sound. Setting the maximum value
240 * results in the loudest possible sound.
243 inline void CMMFDevSound::CBody::SetGain(TInt aGain)
245 iPlugin->SetGain(aGain);
249 * -doxygen comments moved to header-
251 * Returns the speaker balance set for playing.
255 * @param "aLeftPrecentage"
256 * On return contains the left speaker volume percentage.
258 * @param "aRightPercentage"
259 * On return contains the right speaker volume percentage.
262 inline void CMMFDevSound::CBody::GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
264 iPlugin->GetPlayBalanceL(aLeftPercentage, aRightPercentage);
268 * -doxygen comments moved to header-
270 * Sets the speaker balance for playing.
272 * The speaker balance can be changed before or during playback and is
273 * effective immediately.
275 * @param "aLeftPercentage"
276 * On return contains left speaker volume perecentage. This can be any
277 * value from zero to 100. Setting a zero value mutes the sound on left
280 * @param "aRightPercentage"
281 * On return contains right speaker volume perecentage. This can be any
282 * value from zero to 100. Setting a zero value mutes the sound on
286 inline void CMMFDevSound::CBody::SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
288 iPlugin->SetPlayBalanceL(aLeftPercentage, aRightPercentage);
292 * -doxygen comments moved to header-
294 * Returns the microphone gain balance set for recording.
298 * @param "aLeftPercentage"
299 * On return contains the left microphone gain percentage.
301 * @param "aRightPercentage"
302 * On return contains the right microphone gain percentage.
305 inline void CMMFDevSound::CBody::GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
307 iPlugin->GetRecordBalanceL(aLeftPercentage, aRightPercentage);
311 * -doxygen comments moved to header-
313 * Sets the microphone gain balance for recording.
315 * The microphone gain balance can be changed before or during recording and
316 * is effective immediately.
318 * @param "aLeftPercentage"
319 * Left microphone gain precentage. This can be any value from zero to
320 * 100. Setting a zero value mutes the gain on left microphone.
322 * @param "aRightPercentage"
323 * Right microphone gain precentage. This can be any value from zero to
324 * 100. Setting a zero value mutes the gain on right microphone.
327 inline void CMMFDevSound::CBody::SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
329 iPlugin->SetRecordBalanceL(aLeftPercentage, aRightPercentage);
333 * -doxygen comments moved to header-
335 * Initializes audio device and start play process. This method queries and
336 * acquires the audio policy before initializing audio device. If there was an
337 * error during policy initialization, PlayError() method will be called on
338 * the observer with error code KErrAccessDenied, otherwise BufferToBeFilled()
339 * method will be called with a buffer reference. After reading data into the
340 * buffer reference passed, the client should call PlayData() to play data.
342 * The amount of data that can be played is specified in
343 * CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
344 * size will be ignored.
349 inline void CMMFDevSound::CBody::PlayInitL()
351 iPlugin->PlayInitL();
355 * -doxygen comments moved to header-
357 * Initializes audio device and start record process. This method queries and
358 * acquires the audio policy before initializing audio device. If there was an
359 * error during policy initialization, RecordError() method will be called on
360 * the observer with error code KErrAccessDenied, otherwise BufferToBeEmptied()
361 * method will be called with a buffer reference. This buffer contains recorded
362 * or encoded data. After processing data in the buffer reference passed, the
363 * client should call RecordData() to continue recording process.
365 * The amount of data that is available is specified in
366 * CMMFBuffer::RequestSize().
371 inline void CMMFDevSound::CBody::RecordInitL()
373 iPlugin->RecordInitL();
377 * -doxygen comments moved to header-
379 * Plays data in the buffer at the current volume. The client should fill
380 * the buffer with audio data before calling this method. The Observer gets
381 * reference to buffer along with callback BufferToBeFilled(). When playing of
382 * the audio sample is complete, successfully or otherwise, the method
383 * PlayError() on observer is called.
386 inline void CMMFDevSound::CBody::PlayData()
392 * -doxygen comments moved to header-
394 * Contine the process of recording. Once the buffer is filled with recorded
395 * data, the Observer gets reference to buffer along with callback
396 * BufferToBeEmptied(). After processing the buffer (copying over to a
397 * different buffer or writing to file) the client should call this
398 * method to continue recording process.
401 inline void CMMFDevSound::CBody::RecordData()
403 iPlugin->RecordData();
407 * -doxygen comments moved to header-
409 * Stops the ongoing operation (Play, Record, TonePlay, Convert)
412 inline void CMMFDevSound::CBody::Stop()
418 * -doxygen comments moved to header-
420 * Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert)
423 inline void CMMFDevSound::CBody::Pause()
429 * -doxygen comments moved to header-
431 * Returns the sample recorded so far.
434 * Returns the samples recorded.
437 inline TInt CMMFDevSound::CBody::SamplesRecorded()
439 return iPlugin->SamplesRecorded();
443 * -doxygen comments moved to header-
445 * Returns the sample played so far.
448 * Returns the samples recorded.
451 inline TInt CMMFDevSound::CBody::SamplesPlayed()
453 return iPlugin->SamplesPlayed();
458 * -doxygen comments moved to header-
460 * Initializes audio device and start playing tone. Tone is played with
461 * frequency and for duration specified.
465 * @param "aFrequency"
466 * Frequency at with the tone will be played.
469 * The period over which the tone will be played. A zero value causes
470 * the no tone to be played (Verify this with test app).
473 inline void CMMFDevSound::CBody::PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration)
475 iPlugin->PlayToneL(aFrequency, aDuration);
479 * -doxygen comments moved to header-
481 * Initializes audio device and start playing a dual tone.
482 * The tone consists of two sine waves of different frequencies summed together
483 * Dual Tone is played with specified frequencies and for specified duration.
485 * @param "aFrequencyOne"
486 * First frequency of dual tone
488 * @param "aFrequencyTwo"
489 * Second frequency of dual tone
492 * The period over which the tone will be played. A zero value causes
493 * the no tone to be played (Verify this with test app).
495 inline void CMMFDevSound::CBody::PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration)
497 iPlugin->PlayDualToneL(aFrequencyOne, aFrequencyTwo, aDuration);
501 * -doxygen comments moved to header-
503 * Initializes audio device and start playing DTMF string aDTMFString.
507 * @param "aDTMFString"
508 * DTMF sequence in a descriptor.
511 inline void CMMFDevSound::CBody::PlayDTMFStringL(const TDesC& aDTMFString)
513 iPlugin->PlayDTMFStringL(aDTMFString);
517 * -doxygen comments moved to header-
519 * Initializes audio device and start playing tone sequence.
523 * @param "TDesC8& aData"
524 * Tone sequence in a descriptor.
527 inline void CMMFDevSound::CBody::PlayToneSequenceL(const TDesC8& aData)
529 iPlugin->PlayToneSequenceL(aData);
533 * -doxygen comments moved to header-
535 * Initializes audio device and start playing the specified pre-defined tone
540 * @param "aSequenceNumber"
541 * The index identifying the specific pre-defined tone sequence. Index
542 * values are relative to zero.
543 * This can be any value from zero to the value returned by a call to
544 * FixedSequenceCount() - 1.
545 * The function raises a panic if sequence number is not within this
547 * @see FixedSequenceCount()
550 inline void CMMFDevSound::CBody::PlayFixedSequenceL(TInt aSequenceNumber)
552 iPlugin->PlayFixedSequenceL(aSequenceNumber);
556 * -doxygen comments moved to header-
558 * Defines the number of times the audio is to be repeated during the tone
559 * playback operation.
561 * A period of silence can follow each playing of tone. The tone playing can
562 * be repeated indefinitely.
564 * @param " aRepeatCount"
565 * The number of times the tone, together with the trailing silence,
566 * is to be repeated. If this is set to KMdaRepeatForever, then the
567 * tone, together with the trailing silence, is repeated indefinitely
568 * or until Stop() is called. If this is set to zero, then the tone is
571 * Supported only during tone playing.
574 inline void CMMFDevSound::CBody::SetToneRepeats(TInt aRepeatCount,
575 const TTimeIntervalMicroSeconds& aRepeatTrailingSilence)
577 iPlugin->SetToneRepeats(aRepeatCount, aRepeatTrailingSilence);
581 * -doxygen comments moved to header-
583 * Defines the duration of tone on, tone off and tone pause to be used during the
584 * DTMF tone playback operation.
586 * Supported only during tone playing.
588 * @param "aToneOnLength"
589 * The period over which the tone will be played. If this is set to
590 * zero, then the tone is not played.
592 * @param "aToneOffLength"
593 * The period over which the no tone will be played.
595 * @param "aPauseLength"
596 * The period over which the tone playing will be paused.
599 inline void CMMFDevSound::CBody::SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
600 TTimeIntervalMicroSeconds32& aToneOffLength,
601 TTimeIntervalMicroSeconds32& aPauseLength)
603 iPlugin->SetDTMFLengths(aToneOnLength, aToneOffLength, aPauseLength);
607 * -doxygen comments moved to header-
609 * Defines the period over which the volume level is to rise smoothly from
610 * nothing to the normal volume level.
612 * @param "aRampDuration"
613 * The period over which the volume is to rise. A zero value causes
614 * the tone sample to be played at the normal level for the full
615 * duration of the playback. A value, which is longer than the duration
616 * of the tone sample, that the sample never reaches its normal
621 inline void CMMFDevSound::CBody::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration)
623 iPlugin->SetVolumeRamp(aRampDuration);
627 * -doxygen comments moved to header-
629 * Defines the priority settings that should be used for this instance.
631 * @param "aPrioritySettings"
632 * An class type representing the client's priority, priority
633 * preference and state.
636 inline void CMMFDevSound::CBody::SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings)
638 iPlugin->SetPrioritySettings(aPrioritySettings);
641 inline TAny* CMMFDevSound::CBody::CustomInterface(TUid aInterface)
643 return iPlugin->CustomInterface(aInterface);
647 * -doxygen comments moved to header-
649 * Returns the number of available pre-defined tone sequences.
651 * This is the number of fixed sequence supported by DevSound by default.
654 * The fixed sequence count. This value is implementation dependent
655 * but is always greater than or equal to zero.
658 inline TInt CMMFDevSound::CBody::FixedSequenceCount()
660 return iPlugin->FixedSequenceCount();
664 * -doxygen comments moved to header-
666 * Returns the name assigned to a specific pre-defined tone sequence.
668 * This is the number of fixed sequence supported by DevSound by default.
670 * The function raises a panic if sequence number specified invalid.
673 * A reference to a Descriptor containing the fixed sequence
674 * name indexed by aSequenceNumber.
676 * @param "aSequenceNumber"
677 * The index identifying the specific pre-defined tone sequence. Index
678 * values are relative to zero.
679 * This can be any value from zero to the value returned by a call to
680 * FixedSequenceCount() - 1.
681 * The function raises a panic if sequence number is not within this
684 * @see FixedSequenceCount()
687 inline const TDesC& CMMFDevSound::CBody::FixedSequenceName(TInt aSequenceNumber)
689 return iPlugin->FixedSequenceName(aSequenceNumber);
694 * -doxygen comments in header-
696 inline void CMMFDevSound::CBody::GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes,const TMMFPrioritySettings& aPrioritySettings) const
698 iPlugin->GetSupportedInputDataTypesL(aSupportedDataTypes, aPrioritySettings);
703 * -doxygen comments in header-
705 inline void CMMFDevSound::CBody::GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const
707 iPlugin->GetSupportedOutputDataTypesL(aSupportedDataTypes, aPrioritySettings);
710 #endif // SOUNDDEVICEBODY_INL