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