os/mm/mm_plat/devsound_adaptation_api/inc/MmfDevSoundAdaptation.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    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
    19 *                implementation.
    20 *
    21 */
    22 
    23 
    24 #ifndef MMFDEVSOUNDADAPTATION_H
    25 #define MMFDEVSOUNDADAPTATION_H
    26 
    27 //  INCLUDES
    28 #include <sounddevice.h>
    29 
    30 // CLASS DECLARATION
    31 
    32 /**
    33 An interface to a set of DevSound adaptation observer callback functions.
    34 
    35 This serves as the method of communication between the client and the
    36 DevSound.
    37 
    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
    42 tones.
    43 */
    44 class MDevSoundAdaptationObserver
    45     {
    46 public:
    47     /**
    48     Handles initialization completion event.
    49 
    50     A derived class must provide an implementation to handle the initialization
    51     request.
    52 
    53     CMMFDevSound object calls this function when its InitializeL() function
    54     completes.
    55 
    56     @param  aError
    57             Error code. KErrNone if successful. Other values are possible
    58             indicating a problem initializing CMMFDevSound object.
    59     */
    60     virtual void InitializeComplete(TInt aError)=0;
    61 
    62     /**
    63     Handles tone play completion event.
    64 
    65     A derived class must provide an implementation to handle the tone play
    66     completion request.
    67 
    68     CMMFDevSound object calls this function when an attempt to play tone has
    69     completed, successfully or otherwise.
    70 
    71     The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
    72     PlayToneSequenceL(), and PlayFixedSequenceL().
    73 
    74     @param  aError
    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.
    79     */
    80     virtual void ToneFinished(TInt aError)=0;
    81 
    82     /**
    83     Handles CMMFDevSound object's data request event.
    84 
    85     A derived class must provide an implementation to supply CMMFDevSound
    86     object the data that it needs to play.
    87 
    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.
   102 
   103     @param  aBuffer
   104             Buffer into which data should be read. The amount of data that is
   105             needed is specified in CMMFBuffer::RequestSize().
   106     */
   107     virtual void BufferToBeFilled(CMMFBuffer* aBuffer)=0;
   108 
   109     /**
   110     Handles play completion or cancel event.
   111 
   112     A derived class must provide an implementation to handle the play
   113     completion or cancel request.
   114 
   115     CMMFDevSound object calls this function when an attempt to play audio sample
   116     has completed, successfully or otherwise.
   117 
   118     @param  aError
   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.
   122     */
   123     virtual void PlayError(TInt aError)=0;
   124 
   125     /**
   126     Handles CMMFDevSound object's data request event.
   127 
   128     A derived class must provide an implementation to process the data
   129     supplied by CMMFDevSound object while recording.
   130 
   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.
   136 
   137     @param  aBuffer
   138             Buffer containing processed (recorded) data. The amount
   139             of data that is available is specified in CMMFBuffer::RequestSize().
   140     */
   141     virtual void BufferToBeEmptied(CMMFBuffer* aBuffer)=0;
   142 
   143     /**
   144     Handles record completion or cancel event.
   145 
   146     A derived class must provide an implementation to handle the record
   147     completion or cancel request.
   148 
   149     CMMFDevSound object calls this function when an attempt to record audio sample
   150     has completed, successfully or otherwise.
   151 
   152     @param  aError
   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.
   156     */
   157     virtual void RecordError(TInt aError)=0;
   158 
   159     /**
   160     Handles device event.
   161 
   162     A derived class must provide an implementtion to handle the messages from
   163     audio hardware device.
   164 
   165     CMMFDevSound object calls this function when a message is received from the
   166     audio hardware device.
   167 
   168     @param  aMessageType
   169             Defines the type of message. Used to determine how to
   170             interpret the contents of aMsg.
   171     @param  aMsg
   172             Message that is packed in the Descriptor format.
   173     */
   174     virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg)=0;
   175 
   176     };
   177 
   178 
   179 /**
   180 *  A class representing client application information.
   181 *
   182 *  @lib MmfDevSoundAdaptation.lib
   183 *  @since S60 3.0
   184 */
   185 class TMMFClientConfig
   186     {
   187     public:
   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
   192     };
   193 
   194 // CLASS DECLARATION
   195 
   196 /**
   197 * This class implements DevSound behavior in a hardware independent way.
   198 *
   199 *  @lib MmfDevSoundAdaptation.lib
   200 *  @since S60 3.0
   201 */
   202 class CMMFDevSoundAdaptation : public CBase
   203     {
   204 
   205     public:  // Constructors and destructor
   206 
   207         /**
   208         * Constructs, and returns a pointer to, a new CMMFDevSoundAdaptation
   209         * object.
   210         * Leaves on failure..
   211         * @param RServer2& aPolicyServerHandle A handle to policy server.
   212         * @return CMMFDevSoundAdaptation* A pointer to newly created object.
   213         */
   214         IMPORT_C static CMMFDevSoundAdaptation* NewL(RServer2& aPolicyServerHandle);
   215 
   216         /**
   217         * Destructor.
   218         */
   219         IMPORT_C virtual ~CMMFDevSoundAdaptation();
   220 
   221     public: // New functions
   222 
   223         /**
   224         * Initializes to raw audio data PCM16 and Sampling Rate of 8 KHz.
   225         * On completion of Initialization, calls InitializeComplete() on
   226         * aDevSoundObserver.
   227         * Leaves on failure.
   228         * @since S60 3.0
   229         * @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   230         *        Observer instance.
   231         * @param TMMFState aMode Mode for which this object will be used.
   232         * @return void
   233         */
   234         IMPORT_C void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   235                                   TMMFState aMode);
   236 
   237         /**
   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
   241         * aDevSoundObserver.
   242         * Leaves on failure.
   243         * @since S60 3.0
   244         * @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   245         *        Observer instance.
   246         * @param TUid aHWDev The CMMFHwDevice implementation identifier.
   247         * @param TMMFState aMode The mode for which this object will be used
   248         * @return void
   249         */
   250         IMPORT_C void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   251                                   TUid aHWDev,
   252                                   TMMFState aMode);
   253 
   254         /**
   255         * Initializes DevSound object for the mode aMode for processing audio
   256         * data with hardware device supporting FourCC aDesiredFourCC.
   257         * Leaves on failure.
   258         * @since S60 3.0
   259         * @param MDevSoundAdaptationObserver& aDevSoundObserver A reference to DevSound
   260         *        Observer instance.
   261         * @param TFourCC aDesiredFourCC The CMMFHwDevice implementation FourCC
   262         *        code.
   263         * @param TMMFState aMode The mode for which this object will be used
   264         * @return KErrNone if successfull, else corresponding error code
   265         * @return void
   266         */
   267         IMPORT_C void InitializeL(MDevSoundAdaptationObserver& aDevSoundObserver,
   268                                   TFourCC aDesiredFourCC,
   269                                   TMMFState aMode);
   270 
   271         /**
   272         * Returns the supported Audio settings ie. encoding, sample rates,
   273         * mono/stereo operation, buffer size etc..
   274         * @since S60 3.0
   275         * @return TMMFCapabilities The device settings.
   276         */
   277         IMPORT_C TMMFCapabilities Capabilities();
   278 
   279         /**
   280         * Returns the current device configuration.
   281         * @since S60 3.0
   282         * @return TMMFCapabilities The device settings.
   283         */
   284         IMPORT_C TMMFCapabilities Config() const;
   285 
   286         /**
   287         * Configure CMMFDevSound object with the settings in aConfig. Use this
   288         * to set sampling rate, encoding and mono/stereo.
   289         * Leaves on failure.
   290         * @since S60 3.0
   291         * @param const TMMFCapabilities& aConfig The attribute values to which
   292         *        CMMFDevSound object will be configured to.
   293         * @return void
   294         */
   295         IMPORT_C void SetConfigL(const TMMFCapabilities& aCaps);
   296 
   297         /**
   298         * Returns an integer representing the maximum volume device supports.
   299         * This is the maximum value which can be passed to
   300         * CMMFDevSound::SetVolume.
   301         * @since S60 3.0
   302         * @return TInt The maximum volume. This value is platform dependent but
   303         *        is always greater than or equal to one.
   304         */
   305         IMPORT_C TInt MaxVolume();
   306 
   307         /**
   308         * Returns an integer representing the current volume.
   309         * @since S60 3.0
   310         * @return TInt The current volume level.
   311         */
   312         IMPORT_C TInt Volume();
   313 
   314         /**
   315         * Changes the current playback volume to a specified value. The volume
   316         * can be changed before or during playback and is effective immediately.
   317         * @since S60 3.0
   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.
   326         * @return void
   327         */
   328         IMPORT_C void SetVolume(TInt aVolume);
   329 
   330         /**
   331         * Returns an integer representing the maximum gain the device supports.
   332         * This is the maximum value which can be passed to CMMFDevSound::SetGain
   333         * @since S60 3.0
   334         * @return TInt The maximum gain. This value is platform dependent but is
   335         *        always greater than or equal to one.
   336         */
   337         IMPORT_C TInt MaxGain();
   338 
   339         /**
   340         * Returns an integer representing the current gain.
   341         * @since S60 3.0
   342         * @return TInt The current gain level.
   343         */
   344         IMPORT_C TInt Gain();
   345 
   346         /**
   347         * Changes the current recording gain to a specified value. The gain can
   348         * be changed before or during recording and is effective immediately.
   349         * @since S60 3.0
   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.
   358         * @return void
   359         */
   360         IMPORT_C void SetGain(TInt aGain);
   361 
   362         /**
   363         * Returns the speaker balance set for playing.
   364         * Leaves on failure.
   365         * @since S60 3.0
   366         * @param TInt &aLeftPercentage On return contains the left speaker
   367         *        volume percentage.
   368         * @param TInt &aRightPercentage On return contains the right speaker
   369         *        volume percentage.
   370         * @return void
   371         */
   372         IMPORT_C void GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
   373 
   374         /**
   375         * Sets the speaker balance for playing. The speaker balance can be
   376         * changed before or during playback and is effective immediately.
   377         * Leaves on failure.
   378         * @since S60 3.0
   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
   382         *        speaker.
   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
   386         *        right speaker.
   387         * @return void
   388         */
   389         IMPORT_C void SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
   390 
   391         /**
   392         * Returns the microphone gain balance set for recording.
   393         * Leaves on failure.
   394         * @since S60 3.0
   395         * @param TInt &aLeftPercentage On return contains the left microphone
   396         *        gain percentage.
   397         * @param TInt &aRightPercentage On return contains the right microphone
   398         *        gain percentage.
   399         * @return void
   400         */
   401         IMPORT_C void GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage);
   402 
   403         /**
   404         * Sets the microphone balance for recording. The microphone balance can
   405         * be changed before or during recording and is effective immediately.
   406         * Leaves on failure.
   407         * @since S60 3.0
   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
   411         *        microphone.
   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
   415         *        right microphone.
   416         * @return void
   417         */
   418         IMPORT_C void SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage);
   419 
   420         /**
   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.
   431         * Leaves on failure.
   432         * @since S60 3.0
   433         * @return void
   434         */
   435         IMPORT_C void PlayInitL();
   436 
   437         /**
   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().
   448         * Leaves on failure.
   449         * @since S60 3.0
   450         * @return void
   451         */
   452         IMPORT_C void RecordInitL();
   453 
   454         /**
   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.
   465         * @return void
   466         */
   467         IMPORT_C void PlayData();
   468 
   469         /**
   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.
   476         * @return void
   477         */
   478         IMPORT_C void RecordData();
   479 
   480         /**
   481         * Stops the ongoing operation (Play, Record, TonePlay).
   482         * @since S60 3.0
   483         * @return void
   484         */
   485         IMPORT_C void Stop();
   486 
   487         /**
   488         * Temporarily Stops the ongoing operation (Play, Record, TonePlay).
   489         * @since S60 3.0
   490         * @return void
   491         */
   492         IMPORT_C void Pause();
   493 
   494         /**
   495         * Returns the Sample recorded so far
   496         * @since S60 3.0
   497         * @return TInt Returns the samples recorded.
   498         */
   499         IMPORT_C TInt SamplesRecorded();
   500 
   501         /**
   502         * Returns the Sample played so far
   503         * @since S60 3.0
   504         * @return TInt Returns the samples played.
   505         */
   506         IMPORT_C TInt SamplesPlayed();
   507 
   508         /**
   509         * Initializes the audio device and starts playing a tone. The tone is
   510         * played with the frequency and duration specified.
   511         * Leaves on failure.
   512         * @since S60 3.0
   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
   516         *        to be played.
   517         * @return void
   518         */
   519         IMPORT_C void PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration);
   520 
   521         /**
   522         * Initializes audio device and starts playing a dual tone. Dual Tone is
   523         * played with the specified frequencies and for the specified duration.
   524         * Leaves on failure.
   525         * @since S60 3.0
   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
   530         *        to be played.
   531         * @return void
   532         */
   533         IMPORT_C void PlayDualToneL(TInt aFrequencyOne,
   534                                     TInt aFrequencyTwo,
   535                                     const TTimeIntervalMicroSeconds& aDuration);
   536 
   537         /**
   538         * Initializes the audio device and starts playing the DTMF string
   539         * aDTMFString.
   540         * Leaves on failure.
   541         * @since S60 3.0
   542         * @param const TDesC &aDTMFString The DTMF sequence in a descriptor.
   543         * @return void
   544         */
   545         IMPORT_C void PlayDTMFStringL(const TDesC& aDTMFString);
   546 
   547         /**
   548         * Initializes the audio device and starts playing a tone sequence.
   549         * Leaves on failure.
   550         * @since S60 3.0
   551         * @param const TDesC8 &aData The tone sequence in a descriptor.
   552         * @return void
   553         */
   554         IMPORT_C void PlayToneSequenceL(const TDesC8& aData);
   555 
   556         /**
   557         * Initializes the audio device and starts playing the specified
   558         * pre-defined tone sequence.
   559         * Leaves on failure.
   560         * @since S60 3.0
   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.
   566         * @return void
   567         */
   568         IMPORT_C void PlayFixedSequenceL(TInt aSequenceNumber);
   569 
   570         /**
   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
   574         * @since S60 3.0
   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.
   583         * @return void
   584         */
   585         IMPORT_C void SetToneRepeats(TInt aRepeatCount,
   586                       const TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
   587 
   588         /**
   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.
   592         * @since S60 3.0
   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.
   600         * @return void
   601         */
   602         IMPORT_C void SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
   603                                      TTimeIntervalMicroSeconds32& aToneOffLength,
   604                                      TTimeIntervalMicroSeconds32& aPauseLength);
   605 
   606         /**
   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.
   610         * @since S60 3.0
   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
   616         *        volume level.
   617         * @return void
   618         */
   619         IMPORT_C void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration);
   620 
   621         /**
   622         * Defines the priority settings that should be used for this instance.
   623         * @since S60 3.0
   624         * @param const TMMFPrioritySettings &aPrioritySettings A class type
   625         *        representing the client's priority, priority preference and
   626         *        state
   627         * @return void
   628         */
   629         IMPORT_C void SetPrioritySettings(
   630                       const TMMFPrioritySettings& aPrioritySettings);
   631 
   632         /**
   633         * Retrieves a custom interface to the device.
   634         * @since S60 3.0
   635         * @param TUid aInterfaceId The interface UID, defined with the custom
   636         *        interface.
   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.
   640         */
   641         IMPORT_C TAny* CustomInterface(TUid aInterfaceId);
   642 
   643         /**
   644         * Returns the number of available pre-defined tone sequences.
   645         * This is the number of fixed sequence supported by DevSound by default.
   646         * @since S60 3.0
   647         * @return TInt  The fixed sequence count. This value is implementation
   648         *        dependent.
   649         */
   650         IMPORT_C TInt FixedSequenceCount();
   651 
   652         /**
   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
   655         * default.
   656         * The function raises a panic if sequence number specified is invalid.
   657         * @since S60 3.0
   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
   663         *        range.
   664         * @return const TDesC & A reference to a Descriptor containing the fixed
   665         *        sequence name indexed by aSequenceNumber.
   666         */
   667         IMPORT_C const TDesC& FixedSequenceName(TInt aSequenceNumber);
   668 
   669         /**
   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.
   676         * @since S60 3.0
   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.
   691         * @return void
   692         */
   693         IMPORT_C void GetSupportedInputDataTypesL(
   694                       RArray<TFourCC>& aSupportedDataTypesconst,
   695                       const TMMFPrioritySettings& aPrioritySettings) const;
   696 
   697         /**
   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.
   704         * @since S60 3.0
   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.
   719         * @return void
   720         */
   721         IMPORT_C void GetSupportedOutputDataTypesL(
   722                       RArray<TFourCC>& aSupportedDataTypes,
   723                       const TMMFPrioritySettings& aPrioritySettings) const;
   724 
   725         /**
   726         * Sets client configuration
   727         * @since S60 3.0
   728         * @param TMMFClientConfig& aClientConfig A reference to client
   729         *        configuration object.
   730         * @return void
   731         */
   732         IMPORT_C void SetClientConfig(const TMMFClientConfig& aClientConfig);
   733 
   734         /**
   735         * Returns client configuration
   736         * @since S60 3.0
   737         * @return void
   738         */
   739         IMPORT_C const TMMFClientConfig& ClientConfig() const;
   740 
   741         /*
   742         * Empties the buffers below DevSound without deleting the codec
   743         * @since S60 3.1
   744         * @return TInt
   745         *
   746         IMPORT_C TInt EmptyBuffers();*/
   747 
   748 
   749     protected:
   750 
   751         // So that nobody can extend
   752         CMMFDevSoundAdaptation();
   753 
   754         // Second phase constructor
   755         void ConstructL(RServer2& aPolicyServerHandle);
   756 
   757     protected:  // Data
   758         // Actual implementation class.
   759         class CBody;
   760 
   761         //DevSoundAdaptation body implementation
   762         CBody* iBody;
   763 
   764 
   765     };
   766 
   767 #endif      // MMFDEVSOUNDADAPTATION
   768 
   769 // End of File