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 #include <mmf/server/sounddevice.h>
17 #include "SoundDeviceBody.h"
21 * Default Constructor.
25 CMMFDevSound::CMMFDevSound()
30 * -doxygen comments moved to header-
34 * Deletes all objects and releases all resource owned by this
38 EXPORT_C CMMFDevSound::~CMMFDevSound()
44 * -doxygen comments moved to header-
46 * Constructs, and returns a pointer to, a new CMMFDevSound object.
51 EXPORT_C CMMFDevSound* CMMFDevSound::NewL()
53 CMMFDevSound* self = new (ELeave) CMMFDevSound;
54 CleanupStack::PushL(self);
61 * -doxygen comments moved to header-
63 * Second phase constructor.
66 void CMMFDevSound::ConstructL()
68 iBody = CBody::NewL();
72 * -doxygen comments moved to header-
74 * Initializes CMMFDevSound object to play and record PCM16 raw audio data
75 * with sampling rate of 8 KHz.
77 * On completion of Initialization, calls InitializeComplete() on
82 * @param "aDevSoundObserver"
83 * A reference to DevSound Observer instance.
86 * Mode for which this object will be used.
89 EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode)
92 iBody->InitializeL(aDevSoundObserver,aMode);
96 * -doxygen comments moved to header-
98 * Initializes DevSound object for the mode aMode for processing audio data
99 * with hardware device aHWDev.
101 * On completion of Initialization, the observer will be notified via call back
102 * InitializeComplete().
106 * @param "aDevSoundObserver"
107 * A reference to DevSound Observer instance.
110 * CMMFHwDevice implementation identifier.
113 * Mode for which this object will be used.
116 EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode)
118 iBody->InitializeL(aDevSoundObserver, aHWDev, aMode);
122 * -doxygen comments moved to header-
124 * Initializes DevSound object for the mode aMode for processing audio data
125 * with hardware device supporting FourCC aDesiredFourCC.
127 * On completion of Initialization, the observer will be notified via call back
128 * InitializeComplete().
132 * @param "aDevSoundObserver"
133 * A reference to DevSound Observer instance.
135 * @param "aDesiredFourCC"
136 * CMMFHwDevice implementation FourCC.
139 * Mode for which this object will be used.
142 EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver,
143 TFourCC aDesiredFourCC, TMMFState aMode)
145 iBody->InitializeL(aDevSoundObserver, aDesiredFourCC, aMode);
149 * -doxygen comments moved to header-
151 * Returns the supported Audio settings.
153 * @return "TMMFCapabilities"
157 EXPORT_C TMMFCapabilities CMMFDevSound::Capabilities()
159 return iBody->Capabilities();
163 * -doxygen comments moved to header-
165 * Returns the current audio settings.
167 * @return "TMMFCapabilities"
171 EXPORT_C TMMFCapabilities CMMFDevSound::Config() const
173 return iBody->Config();
177 * -doxygen comments moved to header-
179 * Configure CMMFDevSound object for the settings in aConfig.
181 * Use this to set sampling rate, Encoding and Mono/Stereo.
184 * Attribute values to which CMMFDevSound object will be configured to.
187 EXPORT_C void CMMFDevSound::SetConfigL(const TMMFCapabilities& aConfig)
189 iBody->SetConfigL(aConfig);
193 * -doxygen comments moved to header-
195 * Returns an integer representing the maximum volume.
197 * This is the maximum value which can be passed to CMMFDevSound::SetVolume.
200 * The maximum volume. This value is platform dependent but is always
201 * greater than or equal to one.
204 EXPORT_C TInt CMMFDevSound::MaxVolume()
206 return iBody->MaxVolume();
210 * -doxygen comments moved to header-
212 * Returns an integer representing the current volume.
215 * The current volume level.
218 EXPORT_C TInt CMMFDevSound::Volume()
220 return iBody->Volume();
224 * -doxygen comments moved to header-
226 * Changes the current playback volume to a specified value.
228 * The volume can be changed before or during playback and is effective
232 * The volume setting. This can be any value from zero to the value
233 * returned by a call to CMMFDevSound::MaxVolume(). If the
234 * volume is not within this range, the volume is automatically set to
235 * minimum or maximum value based on the value that is being passed.
236 * Setting a zero value mutes the sound. Setting the maximum value
237 * results in the loudest possible sound.
240 EXPORT_C void CMMFDevSound::SetVolume(TInt aVolume)
242 iBody->SetVolume(aVolume);
246 * -doxygen comments moved to header-
248 * Returns an integer representing the maximum gain.
250 * This is the maximum value which can be passed to CMMFDevSound::SetGain.
253 * The maximum gain. This value is platform dependent but is always
254 * greater than or equal to one.
257 EXPORT_C TInt CMMFDevSound::MaxGain()
259 return iBody->MaxGain();
263 * -doxygen comments moved to header-
265 * Returns an integer representing the current gain.
268 * The current gain level.
271 EXPORT_C TInt CMMFDevSound::Gain()
273 return iBody->Gain();
277 * -doxygen comments moved to header-
279 * Changes the current recording gain to a specified value.
281 * The gain can be changed before or during recording and is effective
284 * @param "TInt aGain"
285 * The gain setting. This can be any value from zero to the value
286 * returned by a call to CMMFDevSound::MaxGain(). If the
287 * volume is not within this range, the gain is automatically set to
288 * minimum or maximum value based on the value that is being passed.
289 * Setting a zero value mutes the sound. Setting the maximum value
290 * results in the loudest possible sound.
293 EXPORT_C void CMMFDevSound::SetGain(TInt aGain)
295 iBody->SetGain(aGain);
299 * -doxygen comments moved to header-
301 * Returns the speaker balance set for playing.
305 * @param "aLeftPrecentage"
306 * On return contains the left speaker volume percentage.
308 * @param "aRightPercentage"
309 * On return contains the right speaker volume percentage.
312 EXPORT_C void CMMFDevSound::GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
314 iBody->GetPlayBalanceL(aLeftPercentage, aRightPercentage);
318 * -doxygen comments moved to header-
320 * Sets the speaker balance for playing.
322 * The speaker balance can be changed before or during playback and is
323 * effective immediately.
325 * @param "aLeftPercentage"
326 * On return contains left speaker volume perecentage. This can be any
327 * value from zero to 100. Setting a zero value mutes the sound on left
330 * @param "aRightPercentage"
331 * On return contains right speaker volume perecentage. This can be any
332 * value from zero to 100. Setting a zero value mutes the sound on
336 EXPORT_C void CMMFDevSound::SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
338 iBody->SetPlayBalanceL(aLeftPercentage, aRightPercentage);
342 * -doxygen comments moved to header-
344 * Returns the microphone gain balance set for recording.
348 * @param "aLeftPercentage"
349 * On return contains the left microphone gain percentage.
351 * @param "aRightPercentage"
352 * On return contains the right microphone gain percentage.
355 EXPORT_C void CMMFDevSound::GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
357 iBody->GetRecordBalanceL(aLeftPercentage, aRightPercentage);
361 * -doxygen comments moved to header-
363 * Sets the microphone gain balance for recording.
365 * The microphone gain balance can be changed before or during recording and
366 * is effective immediately.
368 * @param "aLeftPercentage"
369 * Left microphone gain precentage. This can be any value from zero to
370 * 100. Setting a zero value mutes the gain on left microphone.
372 * @param "aRightPercentage"
373 * Right microphone gain precentage. This can be any value from zero to
374 * 100. Setting a zero value mutes the gain on right microphone.
377 EXPORT_C void CMMFDevSound::SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
379 iBody->SetRecordBalanceL(aLeftPercentage, aRightPercentage);
383 * -doxygen comments moved to header-
385 * Initializes audio device and start play process. This method queries and
386 * acquires the audio policy before initializing audio device. If there was an
387 * error during policy initialization, PlayError() method will be called on
388 * the observer with error code KErrAccessDenied, otherwise BufferToBeFilled()
389 * method will be called with a buffer reference. After reading data into the
390 * buffer reference passed, the client should call PlayData() to play data.
392 * The amount of data that can be played is specified in
393 * CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
394 * size will be ignored.
399 EXPORT_C void CMMFDevSound::PlayInitL()
405 * -doxygen comments moved to header-
407 * Initializes audio device and start record process. This method queries and
408 * acquires the audio policy before initializing audio device. If there was an
409 * error during policy initialization, RecordError() method will be called on
410 * the observer with error code KErrAccessDenied, otherwise BufferToBeEmptied()
411 * method will be called with a buffer reference. This buffer contains recorded
412 * or encoded data. After processing data in the buffer reference passed, the
413 * client should call RecordData() to continue recording process.
415 * The amount of data that is available is specified in
416 * CMMFBuffer::RequestSize().
421 EXPORT_C void CMMFDevSound::RecordInitL()
423 iBody->RecordInitL();
427 * -doxygen comments moved to header-
429 * Plays data in the buffer at the current volume. The client should fill
430 * the buffer with audio data before calling this method. The Observer gets
431 * reference to buffer along with callback BufferToBeFilled(). When playing of
432 * the audio sample is complete, successfully or otherwise, the method
433 * PlayError() on observer is called.
436 EXPORT_C void CMMFDevSound::PlayData()
442 * -doxygen comments moved to header-
444 * Contine the process of recording. Once the buffer is filled with recorded
445 * data, the Observer gets reference to buffer along with callback
446 * BufferToBeEmptied(). After processing the buffer (copying over to a
447 * different buffer or writing to file) the client should call this
448 * method to continue recording process.
451 EXPORT_C void CMMFDevSound::RecordData()
457 * -doxygen comments moved to header-
459 * Stops the ongoing operation (Play, Record, TonePlay, Convert)
462 EXPORT_C void CMMFDevSound::Stop()
468 * -doxygen comments moved to header-
470 * Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert)
473 EXPORT_C void CMMFDevSound::Pause()
479 * -doxygen comments moved to header-
481 * Returns the sample recorded so far.
484 * Returns the samples recorded.
487 EXPORT_C TInt CMMFDevSound::SamplesRecorded()
489 return iBody->SamplesRecorded();
493 * -doxygen comments moved to header-
495 * Returns the sample played so far.
498 * Returns the samples recorded.
501 EXPORT_C TInt CMMFDevSound::SamplesPlayed()
503 return iBody->SamplesPlayed();
508 * -doxygen comments moved to header-
510 * Initializes audio device and start playing tone. Tone is played with
511 * frequency and for duration specified.
515 * @param "aFrequency"
516 * Frequency at with the tone will be played.
519 * The period over which the tone will be played. A zero value causes
520 * the no tone to be played (Verify this with test app).
523 EXPORT_C void CMMFDevSound::PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration)
525 iBody->PlayToneL(aFrequency, aDuration);
529 * -doxygen comments moved to header-
531 * Initializes audio device and start playing a dual tone.
532 * The tone consists of two sine waves of different frequencies summed together
533 * Dual Tone is played with specified frequencies and for specified duration.
535 * @param "aFrequencyOne"
536 * First frequency of dual tone
538 * @param "aFrequencyTwo"
539 * Second frequency of dual tone
542 * The period over which the tone will be played. A zero value causes
543 * the no tone to be played (Verify this with test app).
545 EXPORT_C void CMMFDevSound::PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration)
547 iBody->PlayDualToneL(aFrequencyOne, aFrequencyTwo, aDuration);
551 * -doxygen comments moved to header-
553 * Initializes audio device and start playing DTMF string aDTMFString.
557 * @param "aDTMFString"
558 * DTMF sequence in a descriptor.
561 EXPORT_C void CMMFDevSound::PlayDTMFStringL(const TDesC& aDTMFString)
563 iBody->PlayDTMFStringL(aDTMFString);
567 * -doxygen comments moved to header-
569 * Initializes audio device and start playing tone sequence.
573 * @param "TDesC8& aData"
574 * Tone sequence in a descriptor.
577 EXPORT_C void CMMFDevSound::PlayToneSequenceL(const TDesC8& aData)
579 iBody->PlayToneSequenceL(aData);
583 * -doxygen comments moved to header-
585 * Initializes audio device and start playing the specified pre-defined tone
590 * @param "aSequenceNumber"
591 * The index identifying the specific pre-defined tone sequence. Index
592 * values are relative to zero.
593 * This can be any value from zero to the value returned by a call to
594 * FixedSequenceCount() - 1.
595 * The function raises a panic if sequence number is not within this
597 * @see FixedSequenceCount()
600 EXPORT_C void CMMFDevSound::PlayFixedSequenceL(TInt aSequenceNumber)
602 iBody->PlayFixedSequenceL(aSequenceNumber);
606 * -doxygen comments moved to header-
608 * Defines the number of times the audio is to be repeated during the tone
609 * playback operation.
611 * A period of silence can follow each playing of tone. The tone playing can
612 * be repeated indefinitely.
614 * @param " aRepeatCount"
615 * The number of times the tone, together with the trailing silence,
616 * is to be repeated. If this is set to KMdaRepeatForever, then the
617 * tone, together with the trailing silence, is repeated indefinitely
618 * or until Stop() is called. If this is set to zero, then the tone is
621 * Supported only during tone playing.
624 EXPORT_C void CMMFDevSound::SetToneRepeats(TInt aRepeatCount,
625 const TTimeIntervalMicroSeconds& aRepeatTrailingSilence)
627 iBody->SetToneRepeats(aRepeatCount, aRepeatTrailingSilence);
631 * -doxygen comments moved to header-
633 * Defines the duration of tone on, tone off and tone pause to be used during the
634 * DTMF tone playback operation.
636 * Supported only during tone playing.
638 * @param "aToneOnLength"
639 * The period over which the tone will be played. If this is set to
640 * zero, then the tone is not played.
642 * @param "aToneOffLength"
643 * The period over which the no tone will be played.
645 * @param "aPauseLength"
646 * The period over which the tone playing will be paused.
649 EXPORT_C void CMMFDevSound::SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
650 TTimeIntervalMicroSeconds32& aToneOffLength,
651 TTimeIntervalMicroSeconds32& aPauseLength)
653 iBody->SetDTMFLengths(aToneOnLength, aToneOffLength, aPauseLength);
657 * -doxygen comments moved to header-
659 * Defines the period over which the volume level is to rise smoothly from
660 * nothing to the normal volume level.
662 * @param "aRampDuration"
663 * The period over which the volume is to rise. A zero value causes
664 * the tone sample to be played at the normal level for the full
665 * duration of the playback. A value, which is longer than the duration
666 * of the tone sample, that the sample never reaches its normal
671 EXPORT_C void CMMFDevSound::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration)
673 iBody->SetVolumeRamp(aRampDuration);
677 * -doxygen comments moved to header-
679 * Defines the priority settings that should be used for this instance.
681 * @param "aPrioritySettings"
682 * An class type representing the client's priority, priority
683 * preference and state.
686 EXPORT_C void CMMFDevSound::SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings)
688 iBody->SetPrioritySettings(aPrioritySettings);
691 EXPORT_C TAny* CMMFDevSound::CustomInterface(TUid aInterface)
693 return iBody->CustomInterface(aInterface);
697 * -doxygen comments moved to header-
699 * Returns the number of available pre-defined tone sequences.
701 * This is the number of fixed sequence supported by DevSound by default.
704 * The fixed sequence count. This value is implementation dependent
705 * but is always greater than or equal to zero.
708 EXPORT_C TInt CMMFDevSound::FixedSequenceCount()
710 return iBody->FixedSequenceCount();
714 * -doxygen comments moved to header-
716 * Returns the name assigned to a specific pre-defined tone sequence.
718 * This is the number of fixed sequence supported by DevSound by default.
720 * The function raises a panic if sequence number specified invalid.
723 * A reference to a Descriptor containing the fixed sequence
724 * name indexed by aSequenceNumber.
726 * @param "aSequenceNumber"
727 * The index identifying the specific pre-defined tone sequence. Index
728 * values are relative to zero.
729 * This can be any value from zero to the value returned by a call to
730 * FixedSequenceCount() - 1.
731 * The function raises a panic if sequence number is not within this
734 * @see FixedSequenceCount()
737 EXPORT_C const TDesC& CMMFDevSound::FixedSequenceName(TInt aSequenceNumber)
739 return iBody->FixedSequenceName(aSequenceNumber);
744 * -doxygen comments in header-
746 EXPORT_C void CMMFDevSound::GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes,const TMMFPrioritySettings& aPrioritySettings) const
748 iBody->GetSupportedInputDataTypesL(aSupportedDataTypes, aPrioritySettings);
753 * -doxygen comments in header-
755 EXPORT_C void CMMFDevSound::GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const
757 iBody->GetSupportedOutputDataTypesL(aSupportedDataTypes, aPrioritySettings);
761 /********************************************************************************
762 * Non Exported public functions ends here *
763 ********************************************************************************/
765 /******************************************************************************
766 * Function Name: E32Dll
768 * Description: Entry point for applications.
770 ******************************************************************************/
773 EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
778 // CMMFDevSoundEventHandler::NewL() has been declared in export table
779 // but since it is the only class method to be so, and .h is in source
780 // it is not actually usable. Just declare the following to keep linker happy
782 // Need dummy abstract type - this is not the real class
783 class RMMFAudioPolicyProxy;
785 class CMMFDevSoundEventHandler : public CActive
788 IMPORT_C static CMMFDevSoundEventHandler* NewL(RMMFAudioPolicyProxy*);
790 CMMFDevSoundEventHandler();
793 EXPORT_C CMMFDevSoundEventHandler* CMMFDevSoundEventHandler::NewL(RMMFAudioPolicyProxy*)
795 _LIT(KModule, "DevSound");
796 User::Panic(KModule, 1000);
800 // default constructor - keep compilers happy
801 CMMFDevSoundEventHandler::CMMFDevSoundEventHandler():