Update contrib.
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: This is a WINS Reference Implementation that runs on emulator
15 * providing basic Playback/Record Functionality. (No Audio Effects, No
16 Mixing of Multiple Streams, basic audio policy that allows only one
17 CMMFDevSoundAdaptation Instance actively accessing sound device driver)
18 * For HW this should be replaced by each HW Specific Adaptation
24 #ifndef MMFDEVSOUNDADAPTATION_H
25 #define MMFDEVSOUNDADAPTATION_H
28 #include <sounddevice.h>
33 An interface to a set of DevSound adaptation observer callback functions.
35 This serves as the method of communication between the client and the
38 The class is a mixin and is intended to be inherited by the client class
39 that is interested in observing the DevSound operation. The functions
40 encapsulated by this class are called when specific events occur in the
41 process of initializing and playing/recording an audio sample or playing
44 class MDevSoundAdaptationObserver
48 Handles initialization completion event.
50 A derived class must provide an implementation to handle the initialization
53 CMMFDevSound object calls this function when its InitializeL() function
57 Error code. KErrNone if successful. Other values are possible
58 indicating a problem initializing CMMFDevSound object.
60 virtual void InitializeComplete(TInt aError)=0;
63 Handles tone play completion event.
65 A derived class must provide an implementation to handle the tone play
68 CMMFDevSound object calls this function when an attempt to play tone has
69 completed, successfully or otherwise.
71 The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
72 PlayToneSequenceL(), and PlayFixedSequenceL().
75 Error code. The status of tone playback. KErrUnderflow playing of
76 the tone is complete. KErrAccessDenied the sound device is in use by
77 another higher priority client. KErrCancel playing of the audio
78 sample is stopped by DevSound client another higher priority client.
80 virtual void ToneFinished(TInt aError)=0;
83 Handles CMMFDevSound object's data request event.
85 A derived class must provide an implementation to supply CMMFDevSound
86 object the data that it needs to play.
88 CMMFDevSound object calls this function when and where it needs data for
89 playing. The observer should notify CMMFDevSound object as
90 quickly as possible after the data is read into buffer, aBuffer by calling
91 PlayData(), otherwise the implementation might callback function PlayError()
92 on derived class object with error code KErrUnderflow.
93 This does not apply to the very first call to PlayData(), however.
94 It is possible for a user of DevSound to hold the first buffer sent in
95 BufferToBeFilled() until ready to play.
96 The use case for this is if a low latency audio response
97 is required, as at this point all the resources used to play audio are open.
98 If used in this way then it is important to be aware that when when the
99 resources for audio are ready at the BufferToBeFilled() callback, a Devsound
100 on a real device will be running at increased power consumption as the audio
101 hw and any required DSPs will be powered up etc.
104 Buffer into which data should be read. The amount of data that is
105 needed is specified in CMMFBuffer::RequestSize().
107 virtual void BufferToBeFilled(CMMFBuffer* aBuffer)=0;
110 Handles play completion or cancel event.
112 A derived class must provide an implementation to handle the play
113 completion or cancel request.
115 CMMFDevSound object calls this function when an attempt to play audio sample
116 has completed, successfully or otherwise.
119 Error code. The status of playback. KErrUnderflow playing of the
120 audio sample is complete. KErrAccessDenied the sound device is in
121 use by another higher priority client.
123 virtual void PlayError(TInt aError)=0;
126 Handles CMMFDevSound object's data request event.
128 A derived class must provide an implementation to process the data
129 supplied by CMMFDevSound object while recording.
131 CMMFDevSound object calls this function when the buffer, aBuffer gets filled
132 while recording. The observer should notify CMMFDevSound
133 object as quickly as possible after data in the buffer is processed by
134 calling RecordData(), otherwise the implementation might callback
135 the function RecordError() on derived class object with error code KErrOverflow.
138 Buffer containing processed (recorded) data. The amount
139 of data that is available is specified in CMMFBuffer::RequestSize().
141 virtual void BufferToBeEmptied(CMMFBuffer* aBuffer)=0;
144 Handles record completion or cancel event.
146 A derived class must provide an implementation to handle the record
147 completion or cancel request.
149 CMMFDevSound object calls this function when an attempt to record audio sample
150 has completed, successfully or otherwise.
153 Error code. The status of recording. KErrOverflow audio devices
154 runs out of internal buffer. KErrAccessDenied the sound device is
155 in use by another higher priority client.
157 virtual void RecordError(TInt aError)=0;
160 Handles device event.
162 A derived class must provide an implementtion to handle the messages from
163 audio hardware device.
165 CMMFDevSound object calls this function when a message is received from the
166 audio hardware device.
169 Defines the type of message. Used to determine how to
170 interpret the contents of aMsg.
172 Message that is packed in the Descriptor format.
174 virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg)=0;
180 * A class representing client application information.
182 * @lib MmfDevSoundAdaptation.lib
185 class TMMFClientConfig
188 TVendorId iVendorId; //<<< Application Vendor Id
189 TSecureId iSecureId; //<<< Application Secure Id
190 TProcessId iProcessId; //<<< Application Process Id
191 RArray<TCapability> iCapabilities; //<<< Application capabilities array
197 * This class implements DevSound behavior in a hardware independent way.
199 * @lib MmfDevSoundAdaptation.lib
202 class CMMFDevSoundAdaptation : public CBase
205 public: // Constructors and destructor
208 * Constructs, and returns a pointer to, a new CMMFDevSoundAdaptation
210 * Leaves on failure..
211 * @param RServer2& aPolicyServerHandle A handle to policy server.
212 * @return CMMFDevSoundAdaptation* A pointer to newly created object.
214 IMPORT_C static CMMFDevSoundAdaptation* NewL(RServer2& aPolicyServerHandle);
219 IMPORT_C virtual ~CMMFDevSoundAdaptation();
221 public: // New functions
224 * Initializes to raw audio data PCM16 and Sampling Rate of 8 KHz.
225 * On completion of Initialization, calls InitializeComplete() on
229 * @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
231 * @param TMMFState aMode Mode for which this object will be used.
234 IMPORT_C void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
238 * Initializes DevSound object for the mode aMode for processing audio
239 * data with hardware device aHWDev.
240 * On completion of Initialization, calls InitializeComplete() on
244 * @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
246 * @param TUid aHWDev The CMMFHwDevice implementation identifier.
247 * @param TMMFState aMode The mode for which this object will be used
250 IMPORT_C void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
255 * Initializes DevSound object for the mode aMode for processing audio
256 * data with hardware device supporting FourCC aDesiredFourCC.
259 * @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
261 * @param TFourCC aDesiredFourCC The CMMFHwDevice implementation FourCC
263 * @param TMMFState aMode The mode for which this object will be used
264 * @return KErrNone if successfull, else corresponding error code
267 IMPORT_C void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
268 TFourCC aDesiredFourCC,
272 * Returns the supported Audio settings ie. encoding, sample rates,
273 * mono/stereo operation, buffer size etc..
275 * @return TMMFCapabilities The device settings.
277 IMPORT_C TMMFCapabilities Capabilities();
280 * Returns the current device configuration.
282 * @return TMMFCapabilities The device settings.
284 IMPORT_C TMMFCapabilities Config() const;
287 * Configure CMMFDevSound object with the settings in aConfig. Use this
288 * to set sampling rate, encoding and mono/stereo.
291 * @param const TMMFCapabilities& aConfig The attribute values to which
292 * CMMFDevSound object will be configured to.
295 IMPORT_C void SetConfigL(const TMMFCapabilities& aCaps);
298 * Returns an integer representing the maximum volume device supports.
299 * This is the maximum value which can be passed to
300 * CMMFDevSound::SetVolume.
302 * @return TInt The maximum volume. This value is platform dependent but
303 * is always greater than or equal to one.
305 IMPORT_C TInt MaxVolume();
308 * Returns an integer representing the current volume.
310 * @return TInt The current volume level.
312 IMPORT_C TInt Volume();
315 * Changes the current playback volume to a specified value. The volume
316 * can be changed before or during playback and is effective immediately.
318 * @param TInt aVolume The volume setting. This can be any value from 0
319 * to the value returned by a call to
320 * CMMFDevSound::MaxVolume(). If the volume is not
321 * within this range, the volume is automatically set
322 * to minimum or maximum value based on the value
323 * that is being passed. Setting a zero value mutes
324 * the sound. Setting the maximum value results in
325 * the loudest possible sound.
328 IMPORT_C void SetVolume(TInt aVolume);
331 * Returns an integer representing the maximum gain the device supports.
332 * This is the maximum value which can be passed to CMMFDevSound::SetGain
334 * @return TInt The maximum gain. This value is platform dependent but is
335 * always greater than or equal to one.
337 IMPORT_C TInt MaxGain();
340 * Returns an integer representing the current gain.
342 * @return TInt The current gain level.
344 IMPORT_C TInt Gain();
347 * Changes the current recording gain to a specified value. The gain can
348 * be changed before or during recording and is effective immediately.
350 * @param TInt aGain The gain setting. This can be any value from zero to
351 * the value returned by a call to
352 * CMMFDevSound::MaxGain(). If the volume
353 * is not within this range, the gain is automatically
354 * set to minimum or maximum value based on the value
355 * that is being passed. Setting a zero value mutes the
356 * sound. Setting the maximum value results in the
357 * loudest possible sound.
360 IMPORT_C void SetGain(TInt aGain);
363 * Returns the speaker balance set for playing.
366 * @param TInt &aLeftPercentage On return contains the left speaker
368 * @param TInt &aRightPercentage On return contains the right speaker
372 IMPORT_C void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
375 * Sets the speaker balance for playing. The speaker balance can be
376 * changed before or during playback and is effective immediately.
379 * @param TInt aLeftPercentage The left speaker volume percentage. This
380 * can be any value from zero to 100. Setting
381 * a zero value mutes the sound on left
383 * @param TInt aRightPercentage The right speaker volume percentage.
384 * This can be any value from zero to 100.
385 * Setting a zero value mutes the sound on
389 IMPORT_C void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
392 * Returns the microphone gain balance set for recording.
395 * @param TInt &aLeftPercentage On return contains the left microphone
397 * @param TInt &aRightPercentage On return contains the right microphone
401 IMPORT_C void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
404 * Sets the microphone balance for recording. The microphone balance can
405 * be changed before or during recording and is effective immediately.
408 * @param TInt aLeftPercentage The left microphone gain percentage. This
409 * can be any value from zero to 100. Setting
410 * a zero value mutes the sound from left
412 * @param TInt aRightPercentage The right microphone gain percentage.
413 * This can be any value from zero to 100.
414 * Setting a zero value mutes the sound from
418 IMPORT_C void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
421 * Initializes the audio device and starts the play process. This
422 * function queries and acquires the audio policy before initializing
423 * audio device. If there was an error during policy initialization,
424 * PlayError() function will be called on the observer with error code
425 * KErrAccessDenied, otherwise BufferToBeFilled() function will be called
426 * with a buffer reference. After reading data into the buffer reference
427 * passed, the client should call PlayData() to play data.
428 * The amount of data that can be played is specified in
429 * CMMFBuffer::RequestSize(). Any data that is read into buffer beyond
430 * this size will be ignored.
435 IMPORT_C void PlayInitL();
438 * Initializes the audio device and starts the record process. This
439 * function queries and acquires the audio policy before initializing
440 * audio device. If there was an error during policy initialization,
441 * RecordError() function will be called on the observer with error code
442 * KErrAccessDenied, otherwise BufferToBeEmptied() function will be called
443 * with a buffer reference. This buffer contains recorded or encoded
444 * data. After processing data in the buffer reference passed, the client
445 * should call RecordData() to continue recording process.
446 * The amount of data that is available is specified in
447 * CMMFBuffer::RequestSize().
452 IMPORT_C void RecordInitL();
455 * Plays data in the buffer at the current volume.
456 * The client should fill the buffer with audio data before calling this
457 * function. The observer gets a reference to the buffer along with the
458 * callback function BufferToBeFilled(). When playing of the audio sample
459 * is complete, successfully or otherwise, the function PlayError() on
460 * the observer is called.
461 * The last buffer of the audio stream being played should have the last
462 * buffer flag set using CMMFBuffer::SetLastBuffer(TBool). If a
463 * subsequent attempt to play the clip is made, this flag will need
464 * resetting by the client.
467 IMPORT_C void PlayData();
470 * Contine the process of recording.
471 * Once the buffer is filled with recorded data, the Observer gets a
472 * reference to the buffer along with the callback function
473 * BufferToBeEmptied(). After processing the buffer (copying over to a
474 * different buffer or writing to file) the client should call this
475 * function to continue the recording process.
478 IMPORT_C void RecordData();
481 * Stops the ongoing operation (Play, Record, TonePlay).
485 IMPORT_C void Stop();
488 * Temporarily Stops the ongoing operation (Play, Record, TonePlay).
492 IMPORT_C void Pause();
495 * Returns the Sample recorded so far
497 * @return TInt Returns the samples recorded.
499 IMPORT_C TInt SamplesRecorded();
502 * Returns the Sample played so far
504 * @return TInt Returns the samples played.
506 IMPORT_C TInt SamplesPlayed();
509 * Initializes the audio device and starts playing a tone. The tone is
510 * played with the frequency and duration specified.
513 * @param TInt aFrequency The frequency at which the tone will be played.
514 * @param const TTimeIntervalMicroSeconds &aDuration The period over
515 * which the tone will be played. A zero value causes the no tone
519 IMPORT_C void PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration);
522 * Initializes audio device and starts playing a dual tone. Dual Tone is
523 * played with the specified frequencies and for the specified duration.
526 * @param TInt aFrequencyOne The first frequency of dual tone.
527 * @param TInt aFrequencyTwo The second frequency of dual tone.
528 * @param const TTimeIntervalMicroSeconds &aDuration The period over
529 * which the tone will be played. A zero value causes the no tone
533 IMPORT_C void PlayDualToneL(TInt aFrequencyOne,
535 const TTimeIntervalMicroSeconds& aDuration);
538 * Initializes the audio device and starts playing the DTMF string
542 * @param const TDesC &aDTMFString The DTMF sequence in a descriptor.
545 IMPORT_C void PlayDTMFStringL(const TDesC& aDTMFString);
548 * Initializes the audio device and starts playing a tone sequence.
551 * @param const TDesC8 &aData The tone sequence in a descriptor.
554 IMPORT_C void PlayToneSequenceL(const TDesC8& aData);
557 * Initializes the audio device and starts playing the specified
558 * pre-defined tone sequence.
561 * @param TInt aSequenceNumber The index identifying the specific
562 * pre-defined tone sequence. Index values are relative to zero.
563 * This can be any value from zero to the value returned by a call
564 * to FixedSequenceCount() - 1. The function raises a panic if the
565 * sequence number is not within this range.
568 IMPORT_C void PlayFixedSequenceL(TInt aSequenceNumber);
571 * Defines the number of times the audio is to be repeated during the
572 * tone playback operation. A period of silence can follow each playing
573 * of a tone. The tone playing can be repeated indefinitely
575 * @param TInt aRepeatCount The number of times the tone, together with
576 * the trailing silence, is to be repeated. If this is set to
577 * KMdaRepeatForever, then the tone, together with the trailing
578 * silence, is repeated indefinitely or until Stop() is called.
579 * If this is set to zero, then the tone is not repeated.
580 * @param const TTimeIntervalMicroSeconds &aRepeatTrailingSilence An
581 * interval of silence which will be played after each tone.
582 * Supported only during tone playing.
585 IMPORT_C void SetToneRepeats(TInt aRepeatCount,
586 const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
589 * Defines the duration of tone on, tone off and tone pause to be used
590 * during the DTMF tone playback operation.
591 * Supported only during tone playing.
593 * @param TTimeIntervalMicroSeconds32 &aToneOnLength The period over
594 * which the tone will be played. If this is set to zero, then the
595 * tone is not played.
596 * @param TTimeIntervalMicroSeconds32 &aToneOffLength The period over
597 * which the no tone will be played.
598 * @param TTimeIntervalMicroSeconds32 &aPauseLength The period over which
599 * the tone playing will be paused.
602 IMPORT_C void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
603 TTimeIntervalMicroSeconds32& aToneOffLength,
604 TTimeIntervalMicroSeconds32& aPauseLength);
607 * Defines the period over which the volume level is to rise smoothly
608 * from nothing to the normal volume level.
609 * The function is only available before playing.
611 * @param const TTimeIntervalMicroSeconds &aRampDuration The period over
612 * which the volume is to rise. A zero value causes the tone
613 * sample to be played at the normal level for the full duration
614 * of the playback. A value, which is longer than the duration of
615 * the tone sample means that the sample never reaches its normal
619 IMPORT_C void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
622 * Defines the priority settings that should be used for this instance.
624 * @param const TMMFPrioritySettings &aPrioritySettings A class type
625 * representing the client's priority, priority preference and
629 IMPORT_C void SetPrioritySettings(
630 const TMMFPrioritySettings& aPrioritySettings);
633 * Retrieves a custom interface to the device.
635 * @param TUid aInterfaceId The interface UID, defined with the custom
637 * @return TAny* A pointer to the interface implementation, or NULL if
638 * the device does not implement the interface requested. The
639 * return value must be cast to the correct type by the user.
641 IMPORT_C TAny* CustomInterface(TUid aInterfaceId);
644 * Returns the number of available pre-defined tone sequences.
645 * This is the number of fixed sequence supported by DevSound by default.
647 * @return TInt The fixed sequence count. This value is implementation
650 IMPORT_C TInt FixedSequenceCount();
653 * Returns the name assigned to a specific pre-defined tone sequence.
654 * This is the number of the fixed sequence supported by DevSound by
656 * The function raises a panic if sequence number specified is invalid.
658 * @param TInt aSequenceNumber The index identifying the specific
659 * pre-defined tone sequence. Index values are relative to zero.
660 * This can be any value from zero to the value returned by a call
661 * to CMdaAudioPlayerUtility::FixedSequenceCount() - 1. The
662 * function raises a panic if sequence number is not within this
664 * @return const TDesC & A reference to a Descriptor containing the fixed
665 * sequence name indexed by aSequenceNumber.
667 IMPORT_C const TDesC& FixedSequenceName(TInt aSequenceNumber);
670 * Returns a list of the supported input datatypes that can be sent to
671 * DevSound for playing audio. The datatypes returned are those that the
672 * DevSound supports given the priority settings passed in
673 * aPrioritySettings. Note that if no supported data types are found this
674 * does not constitute failure, the function will return normally with no
675 * entries in aSupportedDataTypes.
677 * @param RArray< TFourCC > &aSupportedDataTypes The array of supported
678 * data types that will be filled in by this function. The
679 * supported data types of the DevSound are in the form of an
680 * array of TFourCC codes. Any existing entries in the array will
681 * be overwritten on calling this function. If no supported data
682 * types are found given the priority settings, then the
683 * aSupportedDatatypes array will have zero entries.
684 * @param const TMMFPrioritySettings &aPrioritySettings The priority
685 * settings used to determine the supported datatypes. Note this
686 * does not set the priority settings. For input datatypes the
687 * iState member of the priority settings would be expected to be
688 * either EMMFStatePlaying or EMMFStatePlayingRecording. The
689 * priority settings may effect the supported datatypes depending
690 * on the audio routing.
693 IMPORT_C void GetSupportedInputDataTypesL(
694 RArray<TFourCC>& aSupportedDataTypesconst,
695 const TMMFPrioritySettings& aPrioritySettings) const;
698 * Returns a list of the supported output dataypes that can be received
699 * from DevSound for recording audio. The datatypes returned are those
700 * that the DevSound supports given the priority settings passed in
701 * aPrioritySettings. Note that if no supported data types are found this
702 * does not constitute failure, the function will return normally with no
703 * entries in aSupportedDataTypes.
705 * @param RArray< TFourCC > &aSupportedDataTypes The array of supported
706 * data types that will be filled in by this function. The
707 * supported datatypes of the DevSound are in the form of an array
708 * of TFourCC codes. Any existing entries in the array will be
709 * overwritten on calling this function. If no supported datatypes
710 * are found given the priority settings, then the
711 * aSupportedDatatypes array will have zero entries.
712 * @param const TMMFPrioritySettings &aPrioritySettings The priority
713 * settings used to determine the supported data types. Note this
714 * does not set the priority settings. For output data types the
715 * iState member of the priority settings would expected to be
716 * either EMMFStateRecording or EMMFStatePlayingRecording. The
717 * priority settings may effect the supported datatypes depending
718 * on the audio routing.
721 IMPORT_C void GetSupportedOutputDataTypesL(
722 RArray<TFourCC>& aSupportedDataTypes,
723 const TMMFPrioritySettings& aPrioritySettings) const;
726 * Sets client configuration
728 * @param TMMFClientConfig& aClientConfig A reference to client
729 * configuration object.
732 IMPORT_C void SetClientConfig(const TMMFClientConfig& aClientConfig);
735 * Returns client configuration
739 IMPORT_C const TMMFClientConfig& ClientConfig() const;
742 * Empties the buffers below DevSound without deleting the codec
746 IMPORT_C TInt EmptyBuffers();*/
751 // So that nobody can extend
752 CMMFDevSoundAdaptation();
754 // Second phase constructor
755 void ConstructL(RServer2& aPolicyServerHandle);
758 // Actual implementation class.
761 //DevSoundAdaptation body implementation
767 #endif // MMFDEVSOUNDADAPTATION