os/mm/devsound/devsoundpluginsupport/src/sounddevice/SoundDevice.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <mmf/server/sounddevice.h>
    17 #include "SoundDeviceBody.h"
    18 
    19 /*
    20  *
    21  *	Default Constructor.
    22  *
    23  *
    24  */
    25 CMMFDevSound::CMMFDevSound()
    26 	{
    27 	}
    28 
    29 /*
    30  *  -doxygen comments moved to header-
    31  *
    32  *	Destructor.
    33  *
    34  *	Deletes all objects and releases all resource owned by this
    35  *	instance.
    36  *
    37  */
    38 EXPORT_C CMMFDevSound::~CMMFDevSound()
    39 	{
    40 	delete iBody;
    41 	}
    42 
    43 /*
    44  *  -doxygen comments moved to header-
    45  *
    46  *	Constructs, and returns a pointer to, a new CMMFDevSound object.
    47  *
    48  *	Leaves on failure.
    49  *
    50  */
    51 EXPORT_C CMMFDevSound* CMMFDevSound::NewL()
    52 	{
    53 	CMMFDevSound* self = new (ELeave) CMMFDevSound;
    54 	CleanupStack::PushL(self);
    55 	self->ConstructL();
    56 	CleanupStack::Pop();
    57 	return self;
    58 	}
    59 
    60 /*
    61  *  -doxygen comments moved to header-
    62  *
    63  *	Second phase constructor.
    64  *
    65  */
    66 void CMMFDevSound::ConstructL()
    67 	{
    68 	iBody = CBody::NewL();
    69 	}
    70 
    71 /*
    72  *  -doxygen comments moved to header-
    73  *
    74  *	Initializes CMMFDevSound object to play and record PCM16 raw audio data
    75  *	with sampling rate of 8 KHz.
    76  *
    77  *	On completion of Initialization, calls InitializeComplete() on
    78  *	aDevSoundObserver.
    79  *
    80  *	Leaves on failure.
    81  *
    82  *	@param	"aDevSoundObserver"
    83  *			A reference to DevSound Observer instance.
    84  *
    85  *	@param	"aMode"
    86  *			Mode for which this object will be used.
    87  *
    88  */
    89 EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TMMFState aMode)
    90 
    91 	{
    92 	iBody->InitializeL(aDevSoundObserver,aMode);
    93 	}
    94 
    95 /*
    96  *  -doxygen comments moved to header-
    97  *
    98  *	Initializes DevSound object for the mode aMode for processing audio data
    99  *	with hardware device aHWDev.
   100  *
   101  *	On completion of Initialization, the observer will be notified via call back
   102  *	InitializeComplete().
   103  *
   104  *	Leaves on failure.
   105  *
   106  *	@param	"aDevSoundObserver"
   107  *			A reference to DevSound Observer instance.
   108  *
   109  *	@param	"aHWDev"
   110  *			CMMFHwDevice implementation identifier.
   111  *
   112  *	@param	"aMode"
   113  *			Mode for which this object will be used.
   114  *
   115  */
   116 EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, TUid aHWDev, TMMFState aMode)
   117 	{
   118 	iBody->InitializeL(aDevSoundObserver, aHWDev, aMode);
   119 	}
   120 
   121 /*
   122  *  -doxygen comments moved to header-
   123  *
   124  *	Initializes DevSound object for the mode aMode for processing audio data
   125  *	with hardware device supporting FourCC aDesiredFourCC.
   126  *
   127  *	On completion of Initialization, the observer will be notified via call back
   128  *	InitializeComplete().
   129  *
   130  *	Leaves on failure.
   131  *
   132  *	@param	"aDevSoundObserver"
   133  *			A reference to DevSound Observer instance.
   134  *
   135  *	@param	"aDesiredFourCC"
   136  *			CMMFHwDevice implementation FourCC.
   137  *
   138  *	@param	"aMode"
   139  *			Mode for which this object will be used.
   140  *
   141  */
   142 EXPORT_C void CMMFDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver, 
   143 										  TFourCC aDesiredFourCC, TMMFState aMode)
   144 	{
   145 	iBody->InitializeL(aDevSoundObserver, aDesiredFourCC, aMode);
   146 	}
   147 
   148 /*
   149  *  -doxygen comments moved to header-
   150  *
   151  *	Returns the supported Audio settings.
   152  *
   153  *	@return	"TMMFCapabilities"
   154  *			Device settings.
   155  *
   156  */
   157 EXPORT_C TMMFCapabilities CMMFDevSound::Capabilities()
   158 	{
   159 	return iBody->Capabilities();
   160 	}
   161 
   162 /*
   163  *  -doxygen comments moved to header-
   164  *
   165  *	Returns the current audio settings.
   166  *
   167  *	@return	"TMMFCapabilities"
   168  *			Device settings.
   169  *
   170  */
   171 EXPORT_C TMMFCapabilities CMMFDevSound::Config() const
   172 	{
   173 	return iBody->Config();
   174 	}
   175 
   176 /*
   177  *  -doxygen comments moved to header-
   178  *
   179  *	Configure CMMFDevSound object for the settings in aConfig.
   180  *
   181  *	Use this to set sampling rate, Encoding and Mono/Stereo.
   182  *
   183  *	@param	"aConfig"
   184  *			Attribute values to which CMMFDevSound object will be configured to.
   185  *
   186  */
   187 EXPORT_C void CMMFDevSound::SetConfigL(const TMMFCapabilities& aConfig)
   188 	{
   189 	iBody->SetConfigL(aConfig);
   190 	}
   191 
   192 /*
   193  *  -doxygen comments moved to header-
   194  *
   195  *	Returns an integer representing the maximum volume.
   196  *
   197  *	This is the maximum value which can be passed to CMMFDevSound::SetVolume.
   198  *
   199  *	@return	"TInt"
   200  *			The maximum volume. This value is platform dependent but is always
   201  *			greater than or equal to one.
   202  *
   203  */
   204 EXPORT_C TInt CMMFDevSound::MaxVolume()
   205 	{
   206 	return iBody->MaxVolume();
   207 	}
   208 
   209 /*
   210  *  -doxygen comments moved to header-
   211  *
   212  *	Returns an integer representing the current volume.
   213  *
   214  *	@return	"TInt"
   215  *			The current volume level.
   216  *
   217  */
   218 EXPORT_C TInt CMMFDevSound::Volume()
   219 	{
   220 	return iBody->Volume();
   221 	}
   222 
   223 /*
   224  *  -doxygen comments moved to header-
   225  *
   226  *	Changes the current playback volume to a specified value.
   227  *
   228  *	The volume can be changed before or during playback and is effective
   229  *	immediately.
   230  *
   231  *	@param	"aVolume"
   232  *			The volume setting. This can be any value from zero to the value
   233  *			returned by a call to CMMFDevSound::MaxVolume(). If the
   234  *			volume is not within this range, the volume is automatically set to
   235  *			minimum or maximum value based on the value that is being passed.
   236  *			Setting a zero value mutes the sound. Setting the maximum value
   237  *			results in the loudest possible sound.
   238  *
   239  */
   240 EXPORT_C void CMMFDevSound::SetVolume(TInt aVolume)
   241 	{
   242 	iBody->SetVolume(aVolume);
   243 	}
   244 
   245 /*
   246  *  -doxygen comments moved to header-
   247  *
   248  *	Returns an integer representing the maximum gain.
   249  *
   250  *	This is the maximum value which can be passed to CMMFDevSound::SetGain.
   251  *
   252  *	@return	"TInt"
   253  *			The maximum gain. This value is platform dependent but is always
   254  *			greater than or equal to one.
   255  *
   256  */
   257 EXPORT_C TInt CMMFDevSound::MaxGain()
   258 	{
   259 	return iBody->MaxGain();
   260 	}
   261 
   262 /*
   263  *  -doxygen comments moved to header-
   264  *
   265  *	Returns an integer representing the current gain.
   266  *
   267  *	@return	"TInt"
   268  *			The current gain level.
   269  *
   270  */
   271 EXPORT_C TInt CMMFDevSound::Gain()
   272 	{
   273 	return iBody->Gain();
   274 	}
   275 
   276 /*
   277  *  -doxygen comments moved to header-
   278  *
   279  *	Changes the current recording gain to a specified value.
   280  *
   281  *	The gain can be changed before or during recording and is effective
   282  *	immediately.
   283  *
   284  *	@param	"TInt aGain"
   285  *			The gain setting. This can be any value from zero to the value
   286  *			returned by a call to CMMFDevSound::MaxGain(). If the
   287  *			volume is not within this range, the gain is automatically set to
   288  *			minimum or maximum value based on the value that is being passed.
   289  *			Setting a zero value mutes the sound. Setting the maximum value
   290  *			results in the loudest possible sound.
   291  *
   292  */
   293 EXPORT_C void CMMFDevSound::SetGain(TInt aGain)
   294 	{
   295 	iBody->SetGain(aGain);
   296 	}
   297 
   298 /*
   299  *  -doxygen comments moved to header-
   300  *
   301  *	Returns the speaker balance set for playing.
   302  *
   303  *	Leaves on failure.
   304  *
   305  *	@param	"aLeftPrecentage"
   306  *			On return contains the left speaker volume percentage.
   307  *
   308  *	@param	"aRightPercentage"
   309  *			On return contains the right speaker volume percentage.
   310  *
   311  */
   312 EXPORT_C void CMMFDevSound::GetPlayBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
   313 	{
   314 	iBody->GetPlayBalanceL(aLeftPercentage, aRightPercentage);
   315 	}
   316 
   317 /*
   318  *  -doxygen comments moved to header-
   319  *
   320  *	Sets the speaker balance for playing.
   321  *
   322  *	The speaker balance can be changed before or during playback and is
   323  *	effective immediately.
   324  *
   325  *	@param	"aLeftPercentage"
   326  *			On return contains left speaker volume perecentage. This can be any
   327  *			value from zero to 100. Setting a zero value mutes the sound on left
   328  *			speaker.
   329  *
   330  *	@param	"aRightPercentage"
   331  *			On return contains right speaker volume perecentage. This can be any
   332  *			value from zero to 100. Setting a zero value mutes the sound on
   333  *			right speaker.
   334  *
   335  */
   336 EXPORT_C void CMMFDevSound::SetPlayBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
   337 	{
   338 	iBody->SetPlayBalanceL(aLeftPercentage, aRightPercentage);
   339 	}
   340 
   341 /*
   342  *  -doxygen comments moved to header-
   343  *
   344  *	Returns the microphone gain balance set for recording.
   345  *
   346  *	Leaves on failure.
   347  *
   348  *	@param	"aLeftPercentage"
   349  *			On return contains the left microphone gain percentage.
   350  *
   351  *	@param	"aRightPercentage"
   352  *			On return contains the right microphone gain percentage.
   353  *
   354  */
   355 EXPORT_C void CMMFDevSound::GetRecordBalanceL(TInt& aLeftPercentage, TInt& aRightPercentage)
   356 	{
   357 	iBody->GetRecordBalanceL(aLeftPercentage, aRightPercentage);
   358 	}
   359 
   360 /*
   361  *  -doxygen comments moved to header-
   362  *
   363  *	Sets the microphone gain balance for recording.
   364  *
   365  *	The microphone gain balance can be changed before or during recording and
   366  *	is effective immediately.
   367  *
   368  *	@param	"aLeftPercentage"
   369  *			Left microphone gain precentage. This can be any value from zero to
   370  *			100. Setting a zero value mutes the gain on left microphone.
   371  *
   372  *	@param	"aRightPercentage"
   373  *			Right microphone gain precentage. This can be any value from zero to
   374  *			100. Setting a zero value mutes the gain on right microphone.
   375  *
   376  */
   377 EXPORT_C void CMMFDevSound::SetRecordBalanceL(TInt aLeftPercentage, TInt aRightPercentage)
   378 	{
   379 	iBody->SetRecordBalanceL(aLeftPercentage, aRightPercentage);
   380 	}
   381 
   382 /*
   383  *  -doxygen comments moved to header-
   384  *
   385  *	Initializes audio device and start play process. This method queries and
   386  *	acquires the audio policy before initializing audio device. If there was an
   387  *	error during policy initialization, PlayError() method will be called on
   388  *	the observer with error code KErrAccessDenied, otherwise BufferToBeFilled()
   389  *	method will be called with a buffer reference. After reading data into the
   390  *	buffer reference passed, the client should call PlayData() to play data.
   391  *
   392  *	The amount of data that can be played is specified in
   393  *	CMMFBuffer::RequestSize(). Any data that is read into buffer beyond this
   394  *	size will be ignored.
   395  *
   396  *	Leaves on failure.
   397  *
   398  */
   399 EXPORT_C void CMMFDevSound::PlayInitL()
   400 	{
   401 	iBody->PlayInitL();
   402 	}
   403 
   404 /*
   405  *  -doxygen comments moved to header-
   406  *
   407  *	Initializes audio device and start record process. This method queries and
   408  *	acquires the audio policy before initializing audio device. If there was an
   409  *	error during policy initialization, RecordError() method will be called on
   410  *	the observer with error code KErrAccessDenied, otherwise BufferToBeEmptied()
   411  *	method will be called with a buffer reference. This buffer contains recorded
   412  *	or encoded data. After processing data in the buffer reference passed, the
   413  *	client should call RecordData() to continue recording process.
   414  *
   415  *	The amount of data that is available is specified in
   416  *	CMMFBuffer::RequestSize().
   417  *
   418  *	Leaves on failure.
   419  *
   420  */
   421 EXPORT_C void CMMFDevSound::RecordInitL()
   422 	{
   423 	iBody->RecordInitL();
   424 	}
   425 
   426 /*
   427  *  -doxygen comments moved to header-
   428  *
   429  *	Plays data in the buffer at the current volume. The client should fill
   430  *	the buffer with audio data before calling this method. The Observer gets
   431  *	reference to buffer along with callback BufferToBeFilled(). When playing of
   432  *	the audio sample is complete, successfully or otherwise, the method
   433  *	PlayError() on observer is called.
   434  *
   435  */
   436 EXPORT_C void CMMFDevSound::PlayData()
   437 	{
   438 	iBody->PlayData();
   439 	}
   440 
   441 /*
   442  *  -doxygen comments moved to header-
   443  *
   444  *	Contine the process of recording. Once the buffer is filled with recorded
   445  *	data, the Observer gets reference to buffer along with callback
   446  *	BufferToBeEmptied(). After processing the buffer (copying over to a
   447  *	different buffer or writing to file) the client should call this
   448  *	method to continue recording process.
   449  *
   450  */
   451 EXPORT_C void CMMFDevSound::RecordData()
   452 	{
   453 	iBody->RecordData();
   454 	}
   455 
   456 /*
   457  *  -doxygen comments moved to header-
   458  *
   459  *	Stops the ongoing operation (Play, Record, TonePlay, Convert)
   460  *
   461  */
   462 EXPORT_C void CMMFDevSound::Stop()
   463 	{
   464 	iBody->Stop();
   465 	}
   466 
   467 /*
   468  *  -doxygen comments moved to header-
   469  *
   470  *	Temporarily Stops the ongoing operation (Play, Record, TonePlay, Convert)
   471  *
   472  */
   473 EXPORT_C void CMMFDevSound::Pause()
   474 	{
   475 	iBody->Pause();
   476 	}
   477 
   478 /*
   479  *  -doxygen comments moved to header-
   480  *
   481  *	Returns the sample recorded so far.
   482  *
   483  *	@return "TInt"
   484  *			Returns the samples recorded.
   485  *
   486  */
   487 EXPORT_C TInt CMMFDevSound::SamplesRecorded()
   488 	{ 
   489 	return iBody->SamplesRecorded();
   490 	}
   491 
   492 /*
   493  *  -doxygen comments moved to header-
   494  *
   495  *	Returns the sample played so far.
   496  *
   497  *	@return "TInt"
   498  *			Returns the samples recorded.
   499  *
   500  */
   501 EXPORT_C TInt CMMFDevSound::SamplesPlayed()
   502 	{ 
   503 	return iBody->SamplesPlayed();
   504 	}
   505 
   506 
   507 /*
   508  *  -doxygen comments moved to header-
   509  *
   510  *	Initializes audio device and start playing tone. Tone is played with
   511  *	frequency and for duration specified.
   512  *
   513  *	Leaves on failure.
   514  *
   515  *	@param	"aFrequency"
   516  *			Frequency at with the tone will be played.
   517  *
   518  *	@param	"aDuration"
   519  *			The period over which the tone will be played. A zero value causes
   520  *			the no tone to be played (Verify this with test app).
   521  *
   522  */
   523 EXPORT_C void CMMFDevSound::PlayToneL(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration)
   524 	{
   525 	iBody->PlayToneL(aFrequency, aDuration);
   526 	}
   527 
   528 /*
   529  *  -doxygen comments moved to header-
   530  *
   531  *	Initializes audio device and start playing a dual tone. 
   532  *  The tone consists of two sine waves of different frequencies summed together
   533  *  Dual Tone is played with specified frequencies and for specified duration.
   534  *
   535  *	@param	"aFrequencyOne"
   536  *			First frequency of dual tone
   537  *
   538  *	@param	"aFrequencyTwo"
   539  *			Second frequency of dual tone
   540  *
   541  *	@param	"aDuration"
   542  *			The period over which the tone will be played. A zero value causes
   543  *			the no tone to be played (Verify this with test app).
   544  */
   545 EXPORT_C void CMMFDevSound::PlayDualToneL(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration)
   546 	{
   547 	iBody->PlayDualToneL(aFrequencyOne, aFrequencyTwo, aDuration);
   548 	}
   549 
   550 /*
   551  *  -doxygen comments moved to header-
   552  *
   553  *	Initializes audio device and start playing DTMF string aDTMFString.
   554  *
   555  *	Leaves on failure.
   556  *
   557  *	@param	"aDTMFString"
   558  *			DTMF sequence in a descriptor.
   559  *
   560  */
   561 EXPORT_C void CMMFDevSound::PlayDTMFStringL(const TDesC& aDTMFString)
   562 	{
   563 	iBody->PlayDTMFStringL(aDTMFString);
   564 	}
   565 
   566 /*
   567  *  -doxygen comments moved to header-
   568  *
   569  *	Initializes audio device and start playing tone sequence.
   570  *
   571  *	Leaves on failure.
   572  *
   573  *	@param	"TDesC8& aData"
   574  *			Tone sequence in a descriptor.
   575  *
   576  */
   577 EXPORT_C void CMMFDevSound::PlayToneSequenceL(const TDesC8& aData)
   578 	{
   579 	iBody->PlayToneSequenceL(aData);
   580 	}
   581 
   582 /*
   583  *  -doxygen comments moved to header-
   584  *
   585  *	Initializes audio device and start playing the specified pre-defined tone
   586  *	sequence.
   587  *
   588  *	Leaves on failure.
   589  *
   590  *	@param	"aSequenceNumber"
   591  *			The index identifying the specific pre-defined tone sequence. Index
   592  *			values are relative to zero.
   593  *			This can be any value from zero to the value returned by a call to
   594  *			FixedSequenceCount() - 1.
   595  *			The function raises a panic if sequence number is not within this
   596  *			range.
   597  *	@see	FixedSequenceCount()
   598  *
   599  */
   600 EXPORT_C void CMMFDevSound::PlayFixedSequenceL(TInt aSequenceNumber)
   601 	{
   602 	iBody->PlayFixedSequenceL(aSequenceNumber);
   603 	}
   604 
   605 /*
   606  *  -doxygen comments moved to header-
   607  *
   608  *	Defines the number of times the audio is to be repeated during the tone
   609  *	playback operation.
   610  *
   611  *	A period of silence can follow each playing of tone. The tone playing can
   612  *	be repeated indefinitely.
   613  *
   614  *	@param	" aRepeatCount"
   615  *			The number of times the tone, together with the trailing silence,
   616  *			is to be repeated. If this is set to KMdaRepeatForever, then the
   617  *			tone, together with the trailing silence, is repeated indefinitely
   618  *			or until Stop() is called. If this is set to zero, then the tone is
   619  *			not repeated.
   620  *
   621  *			Supported only during tone playing.
   622  *
   623  */
   624 EXPORT_C void CMMFDevSound::SetToneRepeats(TInt aRepeatCount,
   625 				const TTimeIntervalMicroSeconds& aRepeatTrailingSilence)
   626 	{
   627 	iBody->SetToneRepeats(aRepeatCount, aRepeatTrailingSilence);
   628 	}
   629 
   630 /*
   631  *  -doxygen comments moved to header-
   632  *
   633  *	Defines the duration of tone on, tone off and tone pause to be used during the
   634  *	DTMF tone playback operation.
   635  *
   636  *	Supported only during tone playing.
   637  *
   638  *	@param	"aToneOnLength"
   639  *			The period over which the tone will be played. If this is set to
   640  *			zero, then the tone is not played.
   641  *
   642  *	@param	"aToneOffLength"
   643  *			The period over which the no tone will be played.
   644  *
   645  *	@param	"aPauseLength"
   646  *			The period over which the tone playing will be paused.
   647  *
   648  */
   649 EXPORT_C void CMMFDevSound::SetDTMFLengths(TTimeIntervalMicroSeconds32& aToneOnLength,
   650 								TTimeIntervalMicroSeconds32& aToneOffLength,
   651 								TTimeIntervalMicroSeconds32& aPauseLength) 
   652 	{
   653 	iBody->SetDTMFLengths(aToneOnLength, aToneOffLength, aPauseLength);
   654 	}
   655 
   656 /*
   657  *  -doxygen comments moved to header-
   658  *
   659  *	Defines the period over which the volume level is to rise smoothly from
   660  *	nothing to the normal volume level.
   661  *
   662  *	@param	"aRampDuration"
   663  *			The period over which the volume is to rise. A zero value causes 
   664  *			the tone sample to be played at the normal level for the full
   665  *			duration of the playback. A value, which is longer than the duration
   666  *			of the tone sample, that the sample never reaches its normal
   667  *			volume level.
   668  *
   669  *
   670  */
   671 EXPORT_C void CMMFDevSound::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration)
   672 	{	
   673 	iBody->SetVolumeRamp(aRampDuration);
   674 	}
   675 
   676 /*
   677  *  -doxygen comments moved to header-
   678  *
   679  *	Defines the priority settings that should be used for this instance.
   680  *
   681  *	@param	"aPrioritySettings"
   682  *			An class type representing the client's priority, priority 
   683  *			preference and state.
   684  *
   685  */
   686 EXPORT_C void CMMFDevSound::SetPrioritySettings(const TMMFPrioritySettings& aPrioritySettings)
   687 	{
   688 	iBody->SetPrioritySettings(aPrioritySettings);
   689 	}
   690 
   691 EXPORT_C TAny* CMMFDevSound::CustomInterface(TUid aInterface)
   692 	{
   693 	return iBody->CustomInterface(aInterface);
   694 	}
   695 
   696 /*
   697  *  -doxygen comments moved to header-
   698  *
   699  *	Returns the number of available pre-defined tone sequences.
   700  *
   701  *	This is the number of fixed sequence supported by DevSound by default.
   702  *
   703  *	@return	"TInt"
   704  *			The fixed sequence count. This value is implementation dependent
   705  *			but is always greater than or equal to zero.
   706  *
   707  */
   708 EXPORT_C TInt CMMFDevSound::FixedSequenceCount()
   709 	{
   710 	return iBody->FixedSequenceCount();
   711 	}
   712 
   713 /*
   714  *  -doxygen comments moved to header-
   715  *
   716  *	Returns the name assigned to a specific pre-defined tone sequence.
   717  *
   718  *	This is the number of fixed sequence supported by DevSound by default.
   719  *
   720  *	The function raises a panic if sequence number specified invalid.
   721  *
   722  *	@return	"TDesC&"
   723  *			A reference to a Descriptor containing the fixed sequence
   724  *			name indexed by aSequenceNumber.
   725  *
   726  *	@param	"aSequenceNumber"
   727  *			The index identifying the specific pre-defined tone sequence. Index
   728  *			values are relative to zero.
   729  *			This can be any value from zero to the value returned by a call to
   730  *			FixedSequenceCount() - 1.
   731  *			The function raises a panic if sequence number is not within this
   732  *			range.
   733  *
   734  *	@see	FixedSequenceCount()
   735  *
   736  */
   737 EXPORT_C const TDesC& CMMFDevSound::FixedSequenceName(TInt aSequenceNumber)
   738 	{
   739 	return iBody->FixedSequenceName(aSequenceNumber);
   740 	}
   741 
   742 
   743 /*
   744  *  -doxygen comments in header-
   745  */
   746 EXPORT_C void CMMFDevSound::GetSupportedInputDataTypesL(RArray<TFourCC>& aSupportedDataTypes,const TMMFPrioritySettings& aPrioritySettings) const
   747 	{
   748 	iBody->GetSupportedInputDataTypesL(aSupportedDataTypes, aPrioritySettings);
   749 	}
   750 
   751 
   752 /*
   753  *  -doxygen comments in header-
   754  */
   755 EXPORT_C void CMMFDevSound::GetSupportedOutputDataTypesL(RArray<TFourCC>& aSupportedDataTypes, const TMMFPrioritySettings& aPrioritySettings) const
   756 	{
   757 	iBody->GetSupportedOutputDataTypesL(aSupportedDataTypes, aPrioritySettings);
   758 	}
   759 
   760 
   761 /********************************************************************************
   762  *				Non Exported public functions ends here							*
   763  ********************************************************************************/
   764 
   765 /******************************************************************************
   766  *	Function Name:	E32Dll
   767  *	
   768  *	Description:	Entry point for applications.
   769  *
   770  ******************************************************************************/
   771 
   772 enum TDllReason {};
   773 EXPORT_C TInt E32Dll(TDllReason /*aReason*/)
   774 	{
   775 	return KErrNone;
   776 	}
   777 
   778 // CMMFDevSoundEventHandler::NewL() has been declared in export table
   779 // but since it is the only class method to be so, and .h is in source
   780 // it is not actually usable. Just declare the following to keep linker happy
   781 
   782 // Need dummy abstract type - this is not the real class
   783 class RMMFAudioPolicyProxy;
   784 
   785 class CMMFDevSoundEventHandler : public CActive
   786 	{
   787 public:
   788 	IMPORT_C static CMMFDevSoundEventHandler* NewL(RMMFAudioPolicyProxy*);
   789 private:
   790 	CMMFDevSoundEventHandler();
   791 	};
   792 	
   793 EXPORT_C CMMFDevSoundEventHandler* CMMFDevSoundEventHandler::NewL(RMMFAudioPolicyProxy*)
   794 	{
   795 	_LIT(KModule, "DevSound");
   796 	User::Panic(KModule, 1000);
   797 	return NULL;
   798 	}
   799 
   800 // default constructor - keep compilers happy
   801 CMMFDevSoundEventHandler::CMMFDevSoundEventHandler():
   802 	CActive(0)
   803 	{
   804 	}