sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __SOUNDDEVICE_H__ sl@0: #define __SOUNDDEVICE_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: //Debugging info sl@0: sl@0: /* sl@0: Notes: sl@0: This file defines the DevSound class which acts as an interface to sl@0: the hardware and is intended to invoke VCR functionality via the plug-ins. sl@0: The DevSound also contains a product specific policy. sl@0: */ sl@0: sl@0: //UIDs for buffers: According to Symbian: Not used sl@0: sl@0: // Public Media Server includes sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Sampling rates available. sl@0: sl@0: When queried from DevSound by calling the function Capabilities(), iRate indicates sl@0: the sampling rates supported by the audio device. sl@0: sl@0: DevSound by default is configured to 8KHz sampling rate. sl@0: So to configure DevSound to play/record audio at 16 KHz sampling rate: sl@0: sl@0: The mode should not be OR'ed with each other, only single values are accepted. sl@0: */ sl@0: enum TMMFSampleRate sl@0: { sl@0: /** 8000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate8000Hz = 0x00000001, sl@0: /** 11025 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate11025Hz = 0x00000002, sl@0: /** 16000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate16000Hz = 0x00000004, sl@0: /** 22050 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate22050Hz = 0x00000008, sl@0: /** 32000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate32000Hz = 0x00000010, sl@0: /** 44100 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate44100Hz = 0x00000020, sl@0: /** 48000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate48000Hz = 0x00000040, sl@0: /** 88200 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate88200Hz = 0x00000080, sl@0: /** 96000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate96000Hz = 0x00000100, sl@0: /** 12000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate12000Hz = 0x00000200, sl@0: /** 24000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate24000Hz = 0x00000400, sl@0: /** 64000 Hz Sampling Rate sl@0: */ sl@0: EMMFSampleRate64000Hz = 0x00000800 sl@0: }; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Mono Stereo playback and record modes available. sl@0: sl@0: When queried from DevSound by calling the function Capabilities(), iChannels sl@0: indicates whether the underlying audio device supports playing back stereo sl@0: audio samples and recording audio samples in stereo mode or not. sl@0: sl@0: DevSound by default is configured to Mono mode. sl@0: So to configure DevSound to play/record audio sample in stereo mode: sl@0: sl@0: The mode should not be OR'ed with each other, only single values are accepted. sl@0: */ sl@0: enum TMMFMonoStereo sl@0: { sl@0: /** Mono mode sl@0: */ sl@0: EMMFMono = 0x00000001, sl@0: /** Stereo mode sl@0: */ sl@0: EMMFStereo = 0x00000002 sl@0: }; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Encoding modes available. sl@0: sl@0: When queried from DevSound by calling the function Capabilities(), iEncoding sl@0: provides information about different encoding supported by audio device. sl@0: sl@0: DevSound by default is configured to play PCM16 Bit audio data. sl@0: Setting encoding mode is not supported yet: sl@0: */ sl@0: enum TMMFSoundEncoding sl@0: { sl@0: /** Signed 8 Bit PCM sl@0: */ sl@0: EMMFSoundEncoding8BitPCM = 0x00000001, sl@0: /** Signed 16 Bit PCM sl@0: */ sl@0: EMMFSoundEncoding16BitPCM = 0x00000002, sl@0: /** Signed 8 Bit ALaw sl@0: */ sl@0: EMMFSoundEncoding8BitALaw = 0x00000004, sl@0: /** Signed 8 Bit MuLaw sl@0: */ sl@0: EMMFSoundEncoding8BitMuLaw = 0x00000008, sl@0: }; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Stereo support enum. sl@0: */ sl@0: enum TMMFStereoSupport sl@0: { sl@0: /** No stereo support sl@0: */ sl@0: EMMFNone = 0x00000000, sl@0: /** Interleaved stereo support sl@0: */ sl@0: EMMFInterleavedOnly = 0x00000001, sl@0: /** Non Interleaved stereo support sl@0: */ sl@0: EMMFNonInterleavedOnly = 0x00000002, sl@0: /** Interleaved and Non Interleaved stereo support sl@0: */ sl@0: EMMFBothNonAndInterleaved = 0x00000003, sl@0: /** Joint stereo support sl@0: */ sl@0: EMMFJoint = 0x00000004 sl@0: }; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Type class for DevSound implementation device capabilities. sl@0: sl@0: CMMFDevSound will return Sampling Rates, Encoding and Stereo feature sl@0: supported in this structure when queried for capabilities. DevSound can sl@0: also be configured by setting parameters in this structure and passing the sl@0: structure to it. sl@0: */ sl@0: class TMMFCapabilities sl@0: { sl@0: public: sl@0: /** Sampling Rates supported sl@0: */ sl@0: TUint iRate; sl@0: /** Encodings supported sl@0: */ sl@0: TUint iEncoding; sl@0: /** Mono/Stereo support sl@0: */ sl@0: TUint iChannels; sl@0: /** Buffer size supported sl@0: */ sl@0: TInt iBufferSize; sl@0: }; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: An interface to a set of DevSound callback functions. sl@0: sl@0: sl@0: This serves as the method of communication between the client and the sl@0: DevSound. sl@0: sl@0: The class is a mixin and is intended to be inherited by the client class sl@0: that is interested in observing the DevSound operation. The functions sl@0: encapsulated by this class are called when specific events occur in the sl@0: process of initializing and playing/recording an audio sample or playing sl@0: tones. sl@0: */ sl@0: class MDevSoundObserver sl@0: { sl@0: public: sl@0: /** sl@0: Handles initialization completion event. sl@0: sl@0: A derived class must provide an implementation to handle the initialization sl@0: request. sl@0: sl@0: CMMFDevSound object calls this function when its InitializeL() function sl@0: completes. sl@0: sl@0: @param aError sl@0: Error code. KErrNone if successful. Other values are possible sl@0: indicating a problem initializing CMMFDevSound object. sl@0: */ sl@0: virtual void InitializeComplete(TInt aError)=0; sl@0: sl@0: /** sl@0: Handles tone play completion event. sl@0: sl@0: A derived class must provide an implementation to handle the tone play sl@0: completion request. sl@0: sl@0: CMMFDevSound object calls this function when an attempt to play tone has sl@0: completed, successfully or otherwise. sl@0: sl@0: The following are the play tone functions; PlayToneL(), PlayDMTFStringL(), sl@0: PlayToneSequenceL(), and PlayFixedSequenceL(). sl@0: sl@0: @param aError sl@0: Error code. The status of tone playback. KErrUnderflow playing of sl@0: the tone is complete. KErrAccessDenied the sound device is in use by sl@0: another higher priority client. KErrCancel playing of the audio sl@0: sample is stopped by DevSound client another higher priority client. sl@0: */ sl@0: virtual void ToneFinished(TInt aError)=0; sl@0: sl@0: /** sl@0: Handles CMMFDevSound object's data request event. sl@0: sl@0: A derived class must provide an implementation to supply CMMFDevSound sl@0: object the data that it needs to play or convert. sl@0: sl@0: CMMFDevSound object calls this function when and where it needs data for sl@0: playing or converting. The observer should notify CMMFDevSound object as sl@0: quickly as possible after the data is read into buffer, aBuffer by calling sl@0: PlayData(), otherwise the implementation might callback function PlayError() sl@0: on derived class object with error code KErrUnderflow. sl@0: This does not apply to the very first call to PlayData(), however. sl@0: It is possible for a user of DevSound to hold the first buffer sent in sl@0: BufferToBeFilled() until ready to play. sl@0: The use case for this is if a low latency audio response sl@0: is required, as at this point all the resources used to play audio are open. sl@0: If used in this way then it is important to be aware that when when the sl@0: resources for audio are ready at the BufferToBeFilled() callback, a Devsound sl@0: on a real device will be running at increased power consumption as the audio sl@0: hw and any required DSPs will be powered up etc. sl@0: sl@0: @param aBuffer sl@0: Buffer into which data should be read. The amount of data that is sl@0: needed is specified in CMMFBuffer::RequestSize(). sl@0: */ sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer)=0; sl@0: sl@0: /** sl@0: Handles play completion or cancel event. sl@0: sl@0: A derived class must provide an implementation to handle the play sl@0: completion or cancel request. sl@0: sl@0: CMMFDevSound object calls this function when an attempt to play audio sample sl@0: has completed, successfully or otherwise. sl@0: sl@0: @param aError sl@0: Error code. The status of playback. KErrUnderflow playing of the sl@0: audio sample is complete. KErrAccessDenied the sound device is in sl@0: use by another higher priority client. sl@0: */ sl@0: virtual void PlayError(TInt aError)=0; sl@0: sl@0: /** sl@0: Handles CMMFDevSound object's data request event. sl@0: sl@0: A derived class must provide an implementation to process the data sl@0: supplied by CMMFDevSound object while recording or converting. sl@0: sl@0: CMMFDevSound object calls this function when the buffer, aBuffer gets filled sl@0: while recording or converting. The observer should notify CMMFDevSound sl@0: object as quickly as possible after data in the buffer is processed by sl@0: calling RecordData(), otherwise the implementation might callback sl@0: the function RecordError() on derived class object with error code KErrOverflow. sl@0: sl@0: @param aBuffer sl@0: Buffer containing processed (recorded or converted) data. The amount sl@0: of data that is available is specified in CMMFBuffer::RequestSize(). sl@0: */ sl@0: virtual void BufferToBeEmptied(CMMFBuffer* aBuffer)=0; sl@0: sl@0: /** sl@0: Handles record completion or cancel event. sl@0: sl@0: A derived class must provide an implementation to handle the record sl@0: completion or cancel request. sl@0: sl@0: CMMFDevSound object calls this function when an attempt to record audio sample sl@0: has completed, successfully or otherwise. sl@0: sl@0: @param aError sl@0: Error code. The status of recording. KErrOverflow audio devices sl@0: runs out of internal buffer. KErrAccessDenied the sound device is sl@0: in use by another higher priority client. sl@0: */ sl@0: virtual void RecordError(TInt aError)=0; sl@0: sl@0: /** sl@0: Handles conversion completion or cancel event. sl@0: sl@0: A derived class must provide an implementation to handle the conversion sl@0: completion or cancel request. sl@0: sl@0: CMMFDevSound object calls this function when an attempt to convert data from sl@0: source format to destination format has completed, successfully or otherwise. sl@0: sl@0: @param aError sl@0: Error code. KErrCancel conversion operation is cancelled. KErrNone sl@0: conversion is complete. Other values are possible indicating a sl@0: problem converting data. sl@0: */ sl@0: virtual void ConvertError(TInt aError)=0; sl@0: sl@0: /** sl@0: Handles device event. sl@0: sl@0: A derived class must provide an implementtion to handle the messages from sl@0: audio hardware device. sl@0: sl@0: CMMFDevSound object calls this function when a message is received from the sl@0: audio hardware device. sl@0: sl@0: @param aMessageType sl@0: Defines the type of message. Used to determine how to sl@0: interpret the contents of aMsg. sl@0: @param aMsg sl@0: Message that is packed in the Descriptor format. sl@0: */ sl@0: virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg)=0; sl@0: sl@0: sl@0: /** sl@0: Handles policy request completion event. sl@0: sl@0: A derived class must provide an implementation to handle the policy request sl@0: completion event. sl@0: sl@0: CMMFDevSound object calls this function when an attempt to acquire sound sl@0: device is rejected by audio policy server. sl@0: sl@0: @param aEvent sl@0: Not used sl@0: */ sl@0: inline virtual void SendEventToClient(const TMMFEvent& aEvent); sl@0: sl@0: }; sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: This is the interface from Symbian OS to the raw audio functions on the sl@0: device hardware. sl@0: sl@0: DevSound is currently loaded as a DLL, and implements the VCR-type sl@0: functions to be expected for such an interface. sl@0: sl@0: The audio functions include the following functionality: sl@0: - Initialisation and configuration of hardware devices, for example, setting microphone gain, sl@0: setting setero balance and so on. sl@0: - The playing and recording of raw audio data. sl@0: - The playing and dynamic control of tones with user specified frequencies. sl@0: - The playing of DTMF strings. sl@0: */ sl@0: class CMMFDevSound : public CBase sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: Constructs, and returns a pointer to, a new CMMFDevSound object. sl@0: sl@0: Leaves on failure. sl@0: */ sl@0: IMPORT_C static CMMFDevSound* NewL(); sl@0: sl@0: /** sl@0: Destructor. sl@0: sl@0: Deletes all objects and releases all resource owned by this sl@0: instance. sl@0: */ sl@0: IMPORT_C ~CMMFDevSound(); sl@0: sl@0: /** sl@0: Initializes CMMFDevSound object to play and record PCM16 raw audio data sl@0: with sampling rate of 8 KHz. sl@0: sl@0: On completion of Initialization, calls InitializeComplete() on sl@0: aDevSoundObserver. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aDevSoundObserver sl@0: A reference to DevSound Observer instance. sl@0: @param aMode sl@0: The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported. sl@0: sl@0: sl@0: */ sl@0: IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode); sl@0: sl@0: sl@0: /** sl@0: Initializes DevSound object for the mode aMode for processing audio data sl@0: with hardware device aHWDev. sl@0: sl@0: On completion of Initialization, the observer will be notified via call back sl@0: InitializeComplete(). sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aDevSoundObserver sl@0: A reference to DevSound Observer instance. sl@0: @param aHWDev sl@0: The CMMFHwDevice implementation identifier. sl@0: @param aMode sl@0: The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported. sl@0: sl@0: */ sl@0: IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode); sl@0: sl@0: /** sl@0: Initializes DevSound object for the mode aMode for processing audio data sl@0: with hardware device supporting FourCC aDesiredFourCC. sl@0: sl@0: On completion of Initialization, the observer will be notified via call back sl@0: InitializeComplete(). sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aDevSoundObserver sl@0: A reference to DevSound Observer instance. sl@0: @param aDesiredFourCC sl@0: The CMMFHwDevice implementation FourCC code. sl@0: @param aMode sl@0: The mode for which this object will be used. Any value other than EMMFStatePlaying, EMMFStateRecording or EMMFStateTonePlaying is unsupported. sl@0: sl@0: */ sl@0: IMPORT_C void InitializeL(MDevSoundObserver& aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode); sl@0: sl@0: /** sl@0: Returns the supported Audio settings ie. encoding, sample rates, mono/stereo operation, buffer sl@0: size etc. sl@0: sl@0: @return The device settings. sl@0: */ sl@0: IMPORT_C TMMFCapabilities Capabilities(); sl@0: sl@0: /** sl@0: Returns the current device configuration. sl@0: sl@0: @return The device settings. sl@0: */ sl@0: IMPORT_C TMMFCapabilities Config() const; sl@0: sl@0: /** sl@0: Configure CMMFDevSound object with the settings in aConfig. sl@0: sl@0: Use this to set sampling rate, encoding and mono/stereo. sl@0: sl@0: @param aCaps sl@0: The attribute values to which CMMFDevSound object will be configured to. sl@0: */ sl@0: IMPORT_C void SetConfigL(const TMMFCapabilities& aCaps); sl@0: sl@0: /** sl@0: Returns an integer representing the maximum volume device supports. sl@0: sl@0: This is the maximum value which can be passed to CMMFDevSound::SetVolume. sl@0: sl@0: @return The maximum volume. This value is platform dependent but is always greater than or equal sl@0: to one. sl@0: */ sl@0: IMPORT_C TInt MaxVolume(); sl@0: sl@0: /** sl@0: Returns an integer representing the current volume. sl@0: sl@0: @return The current volume level. sl@0: */ sl@0: IMPORT_C TInt Volume(); sl@0: sl@0: /** sl@0: Changes the current playback volume to a specified value. sl@0: sl@0: The volume can be changed before or during playback and is effective sl@0: immediately. sl@0: sl@0: @param aVolume sl@0: The volume setting. This can be any value from 0 to the value sl@0: returned by a call to CMMFDevSound::MaxVolume(). If the sl@0: volume is not within this range, the volume is automatically set to sl@0: minimum or maximum value based on the value that is being passed. sl@0: Setting a zero value mutes the sound. Setting the maximum value sl@0: results in the loudest possible sound. sl@0: */ sl@0: IMPORT_C void SetVolume(TInt aVolume); sl@0: sl@0: /** sl@0: Returns an integer representing the maximum gain the device supports. sl@0: sl@0: This is the maximum value which can be passed to CMMFDevSound::SetGain. sl@0: sl@0: @return The maximum gain. This value is platform dependent but is always greater than or equal sl@0: to one. sl@0: */ sl@0: IMPORT_C TInt MaxGain(); sl@0: sl@0: /** sl@0: Returns an integer representing the current gain. sl@0: sl@0: @return The current gain level. sl@0: */ sl@0: IMPORT_C TInt Gain(); sl@0: sl@0: /** sl@0: Changes the current recording gain to a specified value. sl@0: sl@0: The gain can be changed before or during recording and is effective sl@0: immediately. sl@0: sl@0: @param aGain sl@0: The gain setting. This can be any value from zero to the value sl@0: returned by a call to CMMFDevSound::MaxGain(). If the sl@0: volume is not within this range, the gain is automatically set to sl@0: minimum or maximum value based on the value that is being passed. sl@0: Setting a zero value mutes the sound. Setting the maximum value sl@0: results in the loudest possible sound. sl@0: */ sl@0: IMPORT_C void SetGain(TInt aGain); sl@0: sl@0: /** sl@0: Returns the speaker balance set for playing. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aLeftPercentage sl@0: On return contains the left speaker volume percentage. sl@0: @param aRightPercentage sl@0: On return contains the right speaker volume percentage. sl@0: */ sl@0: IMPORT_C void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage); sl@0: sl@0: /** sl@0: Sets the speaker balance for playing. sl@0: sl@0: The speaker balance can be changed before or during playback and is sl@0: effective immediately. sl@0: sl@0: @param aLeftPercentage sl@0: On return contains left speaker volume perecentage. This can be any sl@0: value from zero to 100. Setting a zero value mutes the sound on left sl@0: speaker. sl@0: @param aRightPercentage sl@0: On return contains right speaker volume perecentage. This can be any sl@0: value from zero to 100. Setting a zero value mutes the sound on sl@0: right speaker. sl@0: */ sl@0: IMPORT_C void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage); sl@0: sl@0: /** sl@0: Returns the microphone gain balance set for recording. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aLeftPercentage sl@0: On return contains the left microphone gain percentage. sl@0: @param aRightPercentage sl@0: On return contains the right microphone gain percentage. sl@0: */ sl@0: IMPORT_C void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage); sl@0: sl@0: /** sl@0: Sets the microphone gain balance for recording. sl@0: sl@0: The microphone gain balance can be changed before or during recording and sl@0: is effective immediately. sl@0: sl@0: @param aLeftPercentage sl@0: The left microphone gain precentage. This can be any value from zero to sl@0: 100. Setting a zero value mutes the gain on left microphone. sl@0: @param aRightPercentage sl@0: The right microphone gain precentage. This can be any value from zero to sl@0: 100. Setting a zero value mutes the gain on right microphone. sl@0: */ sl@0: IMPORT_C void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage); sl@0: sl@0: /** sl@0: Initializes the audio device and starts the play process. sl@0: sl@0: This function queries and acquires the audio policy before initializing audio device. If there was sl@0: an error during policy initialization, PlayError() function will be called on the observer with sl@0: error code KErrAccessDenied, otherwise BufferToBeFilled() function will be called with a buffer sl@0: reference. After reading data into the buffer reference passed, the client should call sl@0: PlayData() to play data. sl@0: sl@0: The amount of data that can be played is specified in sl@0: CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this sl@0: size will be ignored. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @see MDevSoundObserver::PlayError() sl@0: @see MDevSoundObserver::BufferToBeFilled() sl@0: */ sl@0: IMPORT_C void PlayInitL(); sl@0: sl@0: /** sl@0: Initializes audio device and starts the recording process. sl@0: sl@0: This function queries and acquires the audio policy before initializing audio device. If there sl@0: was an error during policy initialization, RecordError() function will be called on the observer sl@0: with error code KErrAccessDenied, otherwise BufferToBeEmptied() function will be called with a sl@0: buffer reference. This buffer contains recorded or encoded data. After processing data in the sl@0: buffer reference passed, the client should call RecordData() to continue recording process. sl@0: sl@0: The amount of data that is available is specified in CMMFBuffer::RequestSize(). sl@0: sl@0: Leaves on failure. sl@0: sl@0: @see MDevSoundObserver::RecordError() sl@0: @see MDevSoundObserver::BufferToBeEmptied() sl@0: sl@0: @capability UserEnvironment sl@0: For recording - the requesting client process must have the sl@0: UserEnvironment capability. sl@0: */ sl@0: IMPORT_C void RecordInitL(); sl@0: sl@0: /** sl@0: Plays data in the buffer at the current volume. sl@0: sl@0: The client should fill the buffer with audio data before calling this function. The observer gets sl@0: a reference to the buffer along with the callback function BufferToBeFilled(). When playing of sl@0: the audio sample is complete, successfully or otherwise, the function PlayError() on the sl@0: observer is called. sl@0: sl@0: The last buffer of the audio stream being played should have the last buffer flag set using sl@0: CMMFBuffer::SetLastBuffer(TBool). If a subsequent attempt to play the clip is made, this flag sl@0: will need resetting by the client. sl@0: sl@0: @see MDevSoundObserver::PlayError() sl@0: */ sl@0: IMPORT_C void PlayData(); sl@0: sl@0: /** sl@0: Contine the process of recording. sl@0: sl@0: Once the buffer is filled with recorded data, the Observer gets a reference to the buffer along sl@0: with the callback function BufferToBeEmptied(). After processing the buffer (copying over to a sl@0: different buffer or writing to file) the client should call this function to continue the sl@0: recording process. sl@0: sl@0: @capability UserEnvironment sl@0: For recording - the requesting client process must have the sl@0: UserEnvironment capability. sl@0: */ sl@0: IMPORT_C void RecordData(); sl@0: sl@0: /** sl@0: Stops the ongoing operation (Play, Record, TonePlay, Convert). sl@0: sl@0: This function should be synchronous and invoke no callbacks through MDevSoundObserver. sl@0: */ sl@0: IMPORT_C void Stop(); sl@0: sl@0: /** sl@0: Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert). sl@0: sl@0: The behaviour of Pause() is currently undefined when the initialisation mode sl@0: is not EMMFStateRecording, consequently different DevSound implementations exhibit sl@0: different behaviour for pause during play. For this reason, it is recommended that sl@0: when pausing of audio during playing is required, Stop() is used instead of the call sl@0: to Pause(). To resume audio playing after Stop(), call PlayInitL(). Among other things, sl@0: this will internally reset the SamplesPlayed() result and the calling code may need to sl@0: remember the previous result to give the correct "samples played from start" value. sl@0: sl@0: In the case of record, Pause is taken to mean halt any further recording sl@0: but continue to call the MDevSoundObserver::BufferToBeEmptied() passing sl@0: already recorded buffers. The last buffer flag should be set when sl@0: all recorded buffers have been flushed. sl@0: sl@0: @see CMMFDevSound::Stop() sl@0: @see CMMFDevSound::PlayInitL() sl@0: @see CMMFDevSound::SamplesPlayed() sl@0: */ sl@0: IMPORT_C void Pause(); sl@0: sl@0: /** sl@0: Returns the number samples recorded so far. sl@0: sl@0: @return The samples recorded. sl@0: */ sl@0: IMPORT_C TInt SamplesRecorded(); sl@0: sl@0: /** sl@0: Returns the number of samples played so far. sl@0: sl@0: @return The samples played. sl@0: */ sl@0: IMPORT_C TInt SamplesPlayed(); sl@0: sl@0: /** sl@0: Initializes the audio device and starts playing a tone. The tone is played with the sl@0: frequency and duration specified. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aFrequency sl@0: The frequency at which the tone will be played. sl@0: @param aDuration sl@0: The period over which the tone will be played. A zero value causes sl@0: the no tone to be played. sl@0: */ sl@0: IMPORT_C void PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration); sl@0: sl@0: /** sl@0: Initializes audio device and starts playing a dual tone. sl@0: sl@0: The generated tone consists of two sine waves of different frequencies sl@0: summed together. sl@0: sl@0: Dual Tone is played with the specified frequencies and for the specified duration. sl@0: sl@0: @param aFrequencyOne sl@0: The first frequency of dual tone. sl@0: @param aFrequencyTwo sl@0: The second frequency of dual tone sl@0: @param aDuration sl@0: The period over which the tone will be played. A zero value causes sl@0: the no tone to be played (Verify this with test app). sl@0: */ sl@0: IMPORT_C void PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration); sl@0: sl@0: /** sl@0: Initializes the audio device and starts playing the DTMF string aDTMFString. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aDTMFString sl@0: The DTMF sequence in a descriptor. sl@0: */ sl@0: IMPORT_C void PlayDTMFStringL(const TDesC& aDTMFString); sl@0: sl@0: /** sl@0: Initializes the audio device and starts playing a tone sequence. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aData sl@0: The tone sequence in a descriptor. sl@0: */ sl@0: IMPORT_C void PlayToneSequenceL(const TDesC8& aData); sl@0: sl@0: /** sl@0: Initializes the audio device and starts playing the specified pre-defined tone sl@0: sequence. sl@0: sl@0: Leaves on failure. sl@0: sl@0: @param aSequenceNumber sl@0: The index identifying the specific pre-defined tone sequence. Index sl@0: values are relative to zero. sl@0: This can be any value from zero to the value returned by a call to sl@0: FixedSequenceCount() - 1. sl@0: The function raises a panic if the sequence number is not within this sl@0: range. sl@0: @see FixedSequenceCount() sl@0: */ sl@0: IMPORT_C void PlayFixedSequenceL(TInt aSequenceNumber); sl@0: sl@0: /** sl@0: Defines the number of times the audio is to be repeated during the tone sl@0: playback operation. sl@0: sl@0: A period of silence can follow each playing of a tone. The tone playing can sl@0: be repeated indefinitely. sl@0: sl@0: @param aRepeatCount sl@0: The number of times the tone, together with the trailing silence, sl@0: is to be repeated. If this is set to KMdaRepeatForever, then the sl@0: tone, together with the trailing silence, is repeated indefinitely sl@0: or until Stop() is called. If this is set to zero, then the tone is sl@0: not repeated. sl@0: @param aRepeatTrailingSilence sl@0: An interval of silence which will be played after each tone. sl@0: Supported only during tone playing. sl@0: */ sl@0: IMPORT_C void SetToneRepeats(TInt aRepeatCount, sl@0: const TTimeIntervalMicroSeconds& aRepeatTrailingSilence); sl@0: sl@0: /** sl@0: Defines the duration of tone on, tone off and tone pause to be used during the sl@0: DTMF tone playback operation. sl@0: sl@0: Supported only during tone playing. sl@0: sl@0: @param aToneOnLength sl@0: The period over which the tone will be played. If this is set to sl@0: zero, then the tone is not played. sl@0: @param aToneOffLength sl@0: The period over which the no tone will be played. sl@0: @param aPauseLength sl@0: The period over which the tone playing will be paused. sl@0: */ sl@0: IMPORT_C void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength, sl@0: TTimeIntervalMicroSeconds32& aToneOffLength, sl@0: TTimeIntervalMicroSeconds32& aPauseLength); sl@0: sl@0: /** sl@0: Defines the period over which the volume level is to rise smoothly from sl@0: nothing to the normal volume level. sl@0: sl@0: The function is only available while the tone is playing. sl@0: sl@0: @param aRampDuration sl@0: The period over which the volume is to rise. A zero value causes sl@0: the tone sample to be played at the normal level for the full sl@0: duration of the playback. A value, which is longer than the duration sl@0: of the tone sample means that the sample never reaches its normal sl@0: volume level. sl@0: */ sl@0: IMPORT_C void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration); sl@0: sl@0: /** sl@0: Defines the priority settings that should be used for this instance. sl@0: sl@0: @param aPrioritySettings sl@0: A class type representing the client's priority, priority preference and state. sl@0: */ sl@0: IMPORT_C void SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings); sl@0: sl@0: /** sl@0: Retrieves a custom interface to the device. sl@0: sl@0: @param aInterfaceId sl@0: The interface UID, defined with the custom interface. sl@0: sl@0: @return A pointer to the interface implementation, or NULL if the device does not sl@0: implement the interface requested. The return value must be cast to the sl@0: correct type by the user.The user should be careful while caching the custom interface pointer, sl@0: as in some situations the lower level custom interface pointer may become NULL. sl@0: */ sl@0: IMPORT_C TAny* CustomInterface(TUid aInterfaceId); sl@0: sl@0: /** sl@0: Returns the number of available pre-defined tone sequences. sl@0: sl@0: This is the number of fixed sequence supported by DevSound by default. sl@0: sl@0: @return The fixed sequence count. This value is implementation dependent but is always greater sl@0: than or equal to zero. sl@0: */ sl@0: IMPORT_C TInt FixedSequenceCount(); sl@0: sl@0: /** sl@0: Returns the name assigned to a specific pre-defined tone sequence. sl@0: sl@0: This is the number of the fixed sequence supported by DevSound by default. sl@0: sl@0: The function raises a panic if sequence number specified is invalid. sl@0: sl@0: @param aSequenceNumber sl@0: The index identifying the specific pre-defined tone sequence. Index values are relative sl@0: to zero. This can be any value from zero to the value returned by a call to sl@0: FixedSequenceCount() - 1. sl@0: The function raises a panic if sequence number is not within this sl@0: range. sl@0: sl@0: @return A reference to a Descriptor containing the fixed sequence name indexed by sl@0: aSequenceNumber. sl@0: sl@0: @see FixedSequenceCount() sl@0: */ sl@0: IMPORT_C const TDesC& FixedSequenceName(TInt aSequenceNumber); sl@0: sl@0: /** sl@0: Returns a list of the supported input datatypes that can be sent to DevSound for playing audio. sl@0: The datatypes returned are those that the DevSound supports given the priority settings passed sl@0: in aPrioritySettings. sl@0: sl@0: Note that if no supported data types are found this does not constitute failure, the function will sl@0: return normally with no entries in aSupportedDataTypes. sl@0: sl@0: @param aSupportedDataTypes sl@0: The array of supported data types that will be filled in by this function. sl@0: The supported data types of the DevSound are in the form of an array sl@0: of TFourCC codes. Any existing entries in the array will be overwritten on sl@0: calling this function. If no supported data types are found given the priority sl@0: settings, then the aSupportedDatatypes array will have zero entries. sl@0: @param aPrioritySettings sl@0: The priority settings used to determine the supported datatypes. Note this sl@0: does not set the priority settings. For input datatypes the iState member sl@0: of the priority settings would be expected to be either sl@0: EMMFStatePlaying or EMMFStatePlayingRecording. The priority settings may sl@0: effect the supported datatypes depending on the audio routing. sl@0: */ sl@0: IMPORT_C void GetSupportedInputDataTypesL(RArray& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const; sl@0: sl@0: /** sl@0: Returns a list of the supported output dataypes that can be received from DevSound for sl@0: recording audio. The datatypes returned are those that the DevSound supports given the priority sl@0: settings passed in aPrioritySettings. sl@0: sl@0: Note that if no supported data types are found this does not constitute failure, the function will sl@0: return normally with no entries in aSupportedDataTypes. sl@0: sl@0: @param aSupportedDataTypes sl@0: The array of supported data types that will be filled in by this function. sl@0: The supported datatypes of the DevSound are in the form of an array sl@0: of TFourCC codes. sl@0: Any existing entries in the array will be overwritten on calling this function. sl@0: If no supported datatypes are found given the priority settings, then sl@0: the aSupportedDatatypes array will have zero entries. sl@0: @param aPrioritySettings sl@0: The priority settings used to determine the supported data types. Note this sl@0: does not set the priority settings. For output data types the iState member sl@0: of the priority settings would expected to be either sl@0: EMMFStateRecording or EMMFStatePlayingRecording. The priority settings may sl@0: effect the supported datatypes depending on the audio routing. sl@0: */ sl@0: IMPORT_C void GetSupportedOutputDataTypesL(RArray& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const; sl@0: sl@0: /** sl@0: Registers the client for notification of resource avalibility. sl@0: sl@0: @param aEventType sl@0: The Notification event type for which the client needs notification. sl@0: @param aNotificationRegistrationData sl@0: The Notification Registration data has been reserved for future use and its value should be always NULL sl@0: @return An error code indicating if the function call was successful. KErrNone on success, sl@0: KErrNotSupported if the event type is not supported, KErrArgument if the notification data sl@0: is not null otherwise another of the system-wide error codes. sl@0: */ sl@0: inline TInt RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData = KNullDesC8); sl@0: sl@0: /** sl@0: Cancels the Registered Notification. sl@0: sl@0: @param aEventType sl@0: The Event type need to cancel sl@0: @return An error code indicating if the function call was successful. KErrNone on success, KErrNotSupported sl@0: if the event type is not supported otherwise another of the system-wide error codes. sl@0: */ sl@0: inline TInt CancelRegisterAsClient(TUid aEventType); sl@0: sl@0: /** sl@0: Returns the Notification data which the client needs to resume playing. sl@0: sl@0: @param aEventType sl@0: The Event type for which to get notification data sl@0: @param aNotificationData sl@0: The reference data for which the client needs to resume the play. The actual data depends on the event type. sl@0: Note that for the event type 'KMMFEventCategoryAudioResourceAvailable' the package buffer returned sl@0: is TMMFTimeIntervalMicroSecondsPckg,but the contents should be converted to an integer and sl@0: interpreted as the data returned is samples played ,but not as a microsecond value. sl@0: @return An error code indicating if the function call was successful. KErrNone on success, otherwise sl@0: another of the system-wide error codes. sl@0: */ sl@0: inline TInt GetResourceNotificationData(TUid aEventType,TDes8& aNotificationData); sl@0: sl@0: /** sl@0: Wait for the clients to resume play back even after the default timeout expires. sl@0: Unless the client cancels the notification request or completes no other client gets sl@0: notification. sl@0: sl@0: @return An error code indicating if the function call was successful. KErrNone on success, sl@0: KErrPermissionDenied if the client does not have MultimediaDD capaility, otherwise sl@0: another of the system-wide error codes. sl@0: */ sl@0: inline TInt WillResumePlay(); sl@0: sl@0: /** sl@0: sl@0: Empties the play buffers below DevSound without causing the codec to be deleted. sl@0: sl@0: @return An error code indicating if the function call was successful. KErrNone on success, sl@0: KErrNotSupported if called in a mode other than EMMFStatePlaying or if the function is otherwise not supported, sl@0: KErrNotReady if this is called before playing, sl@0: otherwise another of the system-wide error codes. sl@0: If this function is not supported, it is advised to use Stop(). sl@0: */ sl@0: inline TInt EmptyBuffers(); sl@0: sl@0: /** Cancels the initialization process of a CMMFDevSound object sl@0: sl@0: @return An error code indicating if the function call was successful. sl@0: KErrNone on success, sl@0: KerrNotReady if this is called before InitializeL() call or after sl@0: the object has been initialized, sl@0: */ sl@0: inline TInt CancelInitialize(); sl@0: sl@0: /** sl@0: Sets client thread info for devsound to make proper policy and routing decisions sl@0: sl@0: @param aTid sl@0: The thread Id of real client. sl@0: sl@0: @capability MultimediaDD sl@0: A process requires MultimediaDD capability to make this call. sl@0: */ sl@0: inline TInt SetClientThreadInfo(TThreadId aTid); sl@0: sl@0: /** sl@0: Retrieves the current play time from the audio renderer sl@0: sl@0: @param aTime sl@0: A reference to TTimeIntervalMicroSeconds object which will be filled with the current play time by this function. sl@0: @return An error code indicating if the function call was successful. sl@0: KErrNone on success, sl@0: KErrNotSupported if the underlying devsound implementation or the HwDevice does not support this API, sl@0: otherwise any of the system-wide error codes. sl@0: If this function is not supported, SamplesPlayed() needs to be used instead. sl@0: sl@0: @see IsGetTimePlayedSupported() sl@0: */ sl@0: inline TInt GetTimePlayed(TTimeIntervalMicroSeconds& aTime); sl@0: sl@0: /** sl@0: This method can be used by devsound clients to check if the devsound implementation supports sl@0: GetTimePlayed API. If this method returns EFalse, SamplesPlayed needs to be used. sl@0: sl@0: @return ETrue if the underlying devsound implementation supports GetTimePlayed API, sl@0: EFalse if the the underlying devsound implementation does not support GetTimePlayed API sl@0: sl@0: @see GetTimePlayed() sl@0: */ sl@0: inline TBool IsGetTimePlayedSupported(); sl@0: sl@0: /** sl@0: This method can be used by devsound clients to check if the devsound implementation ignores the underflow sl@0: errors from the sound driver and does not propagate them to its clients. sl@0: sl@0: @return ETrue if devsound ignores all the underflow errors from the sound driver except for the last buffer sl@0: That means DevSound propagates the underflow error from sound driver to its clients only when sl@0: client sets the last buffer flag on the CMMFBuffer type buffer. sl@0: EFalse if devsound propagates the underflow errors from the sound driver in all the cases sl@0: sl@0: */ sl@0: inline TBool QueryIgnoresUnderflow(); sl@0: sl@0: /** sl@0: This method can be used by devsound clients to check if current configuration supports resume sl@0: This call is only valid when DevSound is initialized sl@0: @return ETrue if current format does supports resume sl@0: EFalse otherwise sl@0: */ sl@0: inline TBool IsResumeSupported(); sl@0: sl@0: /** sl@0: Resume play back, recording or tone playing after this has been paused sl@0: @return An error code indicating if the function call was successful. sl@0: KErrNone on success, sl@0: KErrNotSupported if current format configuration does not support this functionality sl@0: KErrNotReady if DevSound is not paused sl@0: */ sl@0: inline TInt Resume(); sl@0: sl@0: protected: sl@0: sl@0: /** sl@0: Default Constructor. sl@0: */ sl@0: //So that nobody can extend derive from CMMFDevSound. sl@0: CMMFDevSound(); sl@0: sl@0: /** sl@0: Second phase constructor. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: class CBody; sl@0: sl@0: /** sl@0: DevSound body sl@0: */ sl@0: CBody* iBody; sl@0: }; sl@0: sl@0: inline void MDevSoundObserver::SendEventToClient(const TMMFEvent& /*aEvent*/) sl@0: { sl@0: } sl@0: sl@0: #include sl@0: sl@0: #endif // __SOUNDDEVICE_H__