os/mm/devsound/devsoundrefplugin/src/swcodecwrapper/mmfSwCodecWrapper.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <mmf/server/mmfswcodecwrapper.h>
sl@0
    17
#include "mmfSwCodecPlayDataPath.h"
sl@0
    18
#include "mmfSwCodecRecordDataPath.h"
sl@0
    19
#include "mmfSwCodecConvertDataPath.h"
sl@0
    20
#include <mmf/server/mmfswcodecwrappercustominterfacesuids.hrh>
sl@0
    21
#include "mmfswcodecwrapperCustomInterfaces.h"
sl@0
    22
#include <mmf/common/mmfpaniccodes.h>
sl@0
    23
sl@0
    24
sl@0
    25
sl@0
    26
/**
sl@0
    27
 * Internal panic
sl@0
    28
 * @internalComponent
sl@0
    29
 */
sl@0
    30
void Panic(TInt aPanicCode)
sl@0
    31
	{
sl@0
    32
	_LIT(KMMFSwCodecWrapperPanicCategory, "MMFSwCodecWrapper");
sl@0
    33
	User::Panic(KMMFSwCodecWrapperPanicCategory, aPanicCode);
sl@0
    34
	}
sl@0
    35
sl@0
    36
sl@0
    37
/**
sl@0
    38
 * This method is not be exported as it is only 
sl@0
    39
 * intended to be called within this DLL.
sl@0
    40
 * It's purpose is to assign an RMdaDevSound to the play
sl@0
    41
 * custom interface
sl@0
    42
 * @internalComponent
sl@0
    43
 */
sl@0
    44
void TPlayCustomInterface::SetDevice(RMdaDevSound* aDevice)
sl@0
    45
	{
sl@0
    46
	iDevice = aDevice;
sl@0
    47
	}
sl@0
    48
sl@0
    49
void TPlayCustomInterface::SetVolume(TUint aVolume)
sl@0
    50
	{
sl@0
    51
	iVolume = aVolume;
sl@0
    52
	if (iDevice && iDevice->Handle())
sl@0
    53
		iDevice->SetPlayVolume(iVolume);
sl@0
    54
	}
sl@0
    55
	
sl@0
    56
/**
sl@0
    57
 * Procedure to get the number of bytes played by the device driver
sl@0
    58
 * If there is no handle available to the device driver then the 
sl@0
    59
 * procedure returns the last known value
sl@0
    60
 * @released
sl@0
    61
 * @return number of bytes played
sl@0
    62
 */
sl@0
    63
TUint TPlayCustomInterface::BytesPlayed()
sl@0
    64
	{
sl@0
    65
	if(iDevice)
sl@0
    66
		{
sl@0
    67
		if (iDevice->Handle())
sl@0
    68
			iBytesPlayed = iDevice->BytesPlayed();
sl@0
    69
		}
sl@0
    70
	return iBytesPlayed;
sl@0
    71
	}
sl@0
    72
sl@0
    73
/**
sl@0
    74
 * Procedure to get the number of bytes recorded by the device  
sl@0
    75
 * @released
sl@0
    76
 * @return The number of bytes recorded by an existing datapath.  If there
sl@0
    77
 * is no datapath, then the last known number of bytes recorded will be returned.
sl@0
    78
 */
sl@0
    79
TUint TRecordCustomInterface::BytesRecorded()
sl@0
    80
	{
sl@0
    81
	if(iDataPath)
sl@0
    82
		{
sl@0
    83
		iBytesRecorded = iDataPath->RecordedBytesCount();
sl@0
    84
		}
sl@0
    85
	return iBytesRecorded;
sl@0
    86
	}
sl@0
    87
	
sl@0
    88
/**
sl@0
    89
Constructor.
sl@0
    90
*/
sl@0
    91
EXPORT_C CMMFSwCodecWrapper::CMMFSwCodecWrapper()
sl@0
    92
	{
sl@0
    93
	}
sl@0
    94
sl@0
    95
/**
sl@0
    96
Destructor.
sl@0
    97
sl@0
    98
The destructor is called by ECom framework allowing derived classes
sl@0
    99
to clean up implementation specific resources. The sound
sl@0
   100
device drivers are freed.
sl@0
   101
*/
sl@0
   102
EXPORT_C CMMFSwCodecWrapper::~CMMFSwCodecWrapper()
sl@0
   103
	{
sl@0
   104
	delete iDataPath;
sl@0
   105
	delete iCodec;
sl@0
   106
	delete iPlayCustomInterface;
sl@0
   107
	delete iRecordCustomInterface;
sl@0
   108
	}
sl@0
   109
sl@0
   110
/**
sl@0
   111
Initializes the hardware device tasks - in the case of a
sl@0
   112
sw codec wrapper 'hardware device' this consits of loading the
sl@0
   113
sound device drivers and creating the CMMFSwCodec.
sl@0
   114
sl@0
   115
@param  aDevInfo
sl@0
   116
        Device initialization parameters.
sl@0
   117
        Only the iHwDeviceObserver is used for CMFSwCodecWrapper
sl@0
   118
        derived CMMFHwDevices.
sl@0
   119
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   120
        another of the system-wide error codes.
sl@0
   121
*/
sl@0
   122
EXPORT_C TInt CMMFSwCodecWrapper::Init(THwDeviceInitParams &aDevInfo)
sl@0
   123
	{
sl@0
   124
sl@0
   125
	// [ precondition that aDevInfo has a valid observer ]
sl@0
   126
	if (!aDevInfo.iHwDeviceObserver) 
sl@0
   127
		return KErrArgument;
sl@0
   128
sl@0
   129
	iHwDeviceObserver = aDevInfo.iHwDeviceObserver;
sl@0
   130
#ifndef SYMBIAN_MDF_SHAREDCHUNK_SOUNDDRIVER //Adapter loads the drivers
sl@0
   131
	// Try to load the audio physical driver
sl@0
   132
    TInt ret = User::LoadPhysicalDevice(KPddFileName);
sl@0
   133
	if ((ret!=KErrNone) && (ret!=KErrAlreadyExists))
sl@0
   134
        return ret;
sl@0
   135
sl@0
   136
    // Try to load the audio logical driver
sl@0
   137
	ret = User::LoadLogicalDevice(KLddFileName);
sl@0
   138
    if ((ret!=KErrNone) && (ret!=KErrAlreadyExists))
sl@0
   139
        return ret;
sl@0
   140
#endif
sl@0
   141
	iCodec = &(Codec()); //create codec
sl@0
   142
sl@0
   143
	//[ assert the post condition ]
sl@0
   144
	if (!iCodec) 
sl@0
   145
		return KErrNotSupported;
sl@0
   146
sl@0
   147
	return KErrNone;
sl@0
   148
	}
sl@0
   149
sl@0
   150
sl@0
   151
/**
sl@0
   152
Starts Encoding or Decoding task(s) based on the parameter specified.
sl@0
   153
sl@0
   154
@param  aFuncCmd
sl@0
   155
        The device function specifying the requested service i.e. decode or encode
sl@0
   156
        where EDevEncode = Record, EDevDecode = Play and EDevNullFunc = Convert.
sl@0
   157
@param  aFlowCmd
sl@0
   158
        The device flow directions for requested service.
sl@0
   159
        This parameter is ignored for CMMFSwCodecWrapper CMMFHwDevicePlugins
sl@0
   160
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   161
        another of the system-wide error codes.
sl@0
   162
*/
sl@0
   163
EXPORT_C TInt CMMFSwCodecWrapper::Start(TDeviceFunc aFuncCmd, TDeviceFlow /*aFlowCmd*/)
sl@0
   164
	{
sl@0
   165
	TInt error = KErrNone;
sl@0
   166
sl@0
   167
	// [ precondition that aFuncCmd is valid]
sl@0
   168
	if (!((aFuncCmd == EDevEncode)|(aFuncCmd == EDevDecode)|(aFuncCmd == EDevNullFunc)))
sl@0
   169
		return KErrArgument;
sl@0
   170
sl@0
   171
	// [ precondition that iCodec is present]
sl@0
   172
	if (!iCodec)
sl@0
   173
		return KErrNotReady; //make sure the codec has been added
sl@0
   174
sl@0
   175
    switch (aFuncCmd)
sl@0
   176
        {
sl@0
   177
        case EDevEncode: // Audio record
sl@0
   178
			{
sl@0
   179
			error = StartEncode();
sl@0
   180
			}
sl@0
   181
            break;
sl@0
   182
        case EDevDecode: // Audio play
sl@0
   183
			{
sl@0
   184
			error = StartDecode();
sl@0
   185
			}
sl@0
   186
            break;
sl@0
   187
		case EDevNullFunc: //Audio Convert
sl@0
   188
			{
sl@0
   189
			error = StartConvert();
sl@0
   190
			}
sl@0
   191
			break;
sl@0
   192
        default:
sl@0
   193
            error = KErrNotSupported;
sl@0
   194
            break;
sl@0
   195
		}
sl@0
   196
sl@0
   197
	//[ assert the post conditions ]
sl@0
   198
#ifdef DEBUG
sl@0
   199
	if (!error)
sl@0
   200
		{//only assert if no error otherwise post consitions not valid
sl@0
   201
		__ASSERT_DEBUG(iDataPath, Panic(EMMFSwCodecWrapperNoDataPath));
sl@0
   202
		if ((aFuncCmd == EDevEncode)||(aFuncCmd == EDevDecode))
sl@0
   203
			__ASSERT_DEBUG(iDataPath->Device().Handle(), Panic(EMMFSwCodecWrapperNoDevice));
sl@0
   204
		}
sl@0
   205
#endif
sl@0
   206
	if(error != KErrNone && iDataPath && aFuncCmd!=EDevEncode)
sl@0
   207
		{//if error happens after opening LDD close it
sl@0
   208
		if (iDataPath->Device().Handle()!= KNullHandle)
sl@0
   209
			{
sl@0
   210
			iDataPath->Device().Close();
sl@0
   211
			}
sl@0
   212
		}
sl@0
   213
sl@0
   214
	return error;
sl@0
   215
	}
sl@0
   216
sl@0
   217
sl@0
   218
TInt CMMFSwCodecWrapper::StartDecode()
sl@0
   219
	{
sl@0
   220
	TInt error = KErrNone;
sl@0
   221
sl@0
   222
	//[ assert precondition that play custom interface is present]
sl@0
   223
	//if there is no play custom interface then the user of the CMMFSwCodecWrapper
sl@0
   224
	//cannot have set any of the custom settings such as sample rate.
sl@0
   225
	if (!iPlayCustomInterface)
sl@0
   226
		return KErrNotReady;
sl@0
   227
sl@0
   228
	//play
sl@0
   229
	if (!iDataPath)
sl@0
   230
		{//create a datapath
sl@0
   231
		TRAP(error,iDataPath = CMMFSwCodecPlayDataPath::NewL());
sl@0
   232
		//if datapath could not be created, return error code
sl@0
   233
		if (error != KErrNone)
sl@0
   234
			{
sl@0
   235
			return error;
sl@0
   236
			}
sl@0
   237
		
sl@0
   238
		//here we are sure iDataPath has been correctly allocated		
sl@0
   239
		iDataPath->SetObserver(*iHwDeviceObserver);
sl@0
   240
		error = iDataPath->AddCodec(*iCodec);
sl@0
   241
		if (error == KErrNone)
sl@0
   242
			{
sl@0
   243
			iDeviceBufferSize = (iCodec->SinkBufferSize());
sl@0
   244
			static_cast<CMMFSwCodecPlayDataPath*>(iDataPath)->SetPlayCustomInterface(*iPlayCustomInterface);
sl@0
   245
			}
sl@0
   246
		else
sl@0
   247
			{
sl@0
   248
			// if could not add codec to datapath, return error code
sl@0
   249
			return error;
sl@0
   250
			}
sl@0
   251
		}
sl@0
   252
		
sl@0
   253
	//Here we know that error is KerrNone, now we can check the state of the datapath	
sl@0
   254
	if (iDataPath->State() != CMMFSwCodecDataPath::EPlaying)
sl@0
   255
		{//datapath was created ok and we are not playing
sl@0
   256
		if (iDataPath->State() == CMMFSwCodecDataPath::EStopped)
sl@0
   257
			{//starting from 'fresh so set sound device settings
sl@0
   258
			if (!iDataPath->Device().Handle())
sl@0
   259
  				{//if Device() is called then we need a valid sound device handle
sl@0
   260
  				error = iDataPath->Device().Open();
sl@0
   261
				if (error != KErrNone)
sl@0
   262
					return error;
sl@0
   263
				}
sl@0
   264
			static_cast<TPlayCustomInterface*>(iPlayCustomInterface)->SetDevice(&(iDataPath->Device()));
sl@0
   265
			iDataPath->Device().SetPlayVolume(iPlayCustomInterface->Volume());
sl@0
   266
			RMdaDevSound::TCurrentSoundFormatBuf soundDeviceSettings;
sl@0
   267
			soundDeviceSettings().iRate = iSampleRate;
sl@0
   268
			//this would normally be pcm16
sl@0
   269
			soundDeviceSettings().iEncoding = RMdaDevSound::EMdaSoundEncoding16BitPCM;
sl@0
   270
			//1 = mono 2 = stereo
sl@0
   271
			soundDeviceSettings().iChannels = iChannels;
sl@0
   272
			//tell sound driver what buffer size to expect
sl@0
   273
			//it is up the the implementor to make use the device can support
sl@0
   274
			//the required buffer size
sl@0
   275
			soundDeviceSettings().iBufferSize = iDeviceBufferSize;
sl@0
   276
			error = iDataPath->Device().SetPlayFormat(soundDeviceSettings);	
sl@0
   277
			}//iDataPath->State() == CMMFSwCodecDataPath::EStopped
sl@0
   278
		//else resuming from pause	
sl@0
   279
		if ((error == KErrNone)||(error == KErrInUse))
sl@0
   280
			error = iDataPath->Start();
sl@0
   281
		}//status == KErrNone
sl@0
   282
	return error;
sl@0
   283
	}
sl@0
   284
sl@0
   285
sl@0
   286
TInt CMMFSwCodecWrapper::StartEncode()
sl@0
   287
	{//record
sl@0
   288
sl@0
   289
	//[ assert precondition that record custom interface is present]
sl@0
   290
	//if there is no record custom interface then the user of the CMMFSwCodecWrapper
sl@0
   291
	//cannot have set any of the custom settings such as sample rate.
sl@0
   292
	if (!iRecordCustomInterface)
sl@0
   293
		return KErrNotReady;
sl@0
   294
sl@0
   295
	TInt error = KErrNone;
sl@0
   296
	if (!iDataPath)
sl@0
   297
		{
sl@0
   298
		TRAP(error,iDataPath = CMMFSwCodecRecordDataPath::NewL());
sl@0
   299
		//if datapath could not be created, return error code
sl@0
   300
		if (error != KErrNone)
sl@0
   301
			{
sl@0
   302
			return error;
sl@0
   303
			}
sl@0
   304
sl@0
   305
		//here we are sure iDataPath has been correctly allocated
sl@0
   306
		iDataPath->SetObserver(*iHwDeviceObserver);
sl@0
   307
		error = iDataPath->AddCodec(*iCodec);
sl@0
   308
		if (error == KErrNone)
sl@0
   309
			{
sl@0
   310
			iDeviceBufferSize = (iCodec->SourceBufferSize());
sl@0
   311
			static_cast<TRecordCustomInterface*>(iRecordCustomInterface)->SetDataPath(static_cast<CMMFSwCodecRecordDataPath*>(iDataPath));
sl@0
   312
			}
sl@0
   313
		else
sl@0
   314
			{
sl@0
   315
			// if could not add codec to datapath, return error code
sl@0
   316
			return error;
sl@0
   317
			}
sl@0
   318
		}
sl@0
   319
	
sl@0
   320
	//Here we know that error is KerrNone, now we can check the state of the datapath
sl@0
   321
	if (iDataPath->State() != CMMFSwCodecDataPath::EPlaying)
sl@0
   322
		{
sl@0
   323
		if (iDataPath->State() == CMMFSwCodecDataPath::EStopped)
sl@0
   324
			{
sl@0
   325
			MSwSetParamInterface* setParams = 
sl@0
   326
				static_cast<MSwSetParamInterface*>(iDataPath->CustomInterface(KUidSwSetParamInterface));
sl@0
   327
			ASSERT(!error); // should not get here if error set
sl@0
   328
			error = setParams->SetGain(iRecordCustomInterface->Gain());
sl@0
   329
			if (!error)
sl@0
   330
				{
sl@0
   331
				error = setParams->SetNumChannels(iChannels);
sl@0
   332
				}
sl@0
   333
			if (!error)
sl@0
   334
				{
sl@0
   335
				error = setParams->SetSampleRate(iSampleRate);
sl@0
   336
				}
sl@0
   337
			}
sl@0
   338
		if (error == KErrNone)
sl@0
   339
			{
sl@0
   340
			error = iDataPath->Start();
sl@0
   341
			}
sl@0
   342
		}
sl@0
   343
	return error;
sl@0
   344
	}
sl@0
   345
sl@0
   346
sl@0
   347
TInt CMMFSwCodecWrapper::StartConvert()
sl@0
   348
	{//convert
sl@0
   349
sl@0
   350
	TInt error = KErrNone;
sl@0
   351
	if (!iDataPath)
sl@0
   352
		{
sl@0
   353
		TRAP(error,iDataPath = CMMFSwCodecConvertDataPath::NewL());
sl@0
   354
		if (error != KErrNone)
sl@0
   355
			{
sl@0
   356
			return error;
sl@0
   357
			}
sl@0
   358
		}
sl@0
   359
	
sl@0
   360
	//Here we know we are not dereferencing a null pointer as iDataPath has been correctly initialised
sl@0
   361
	iDataPath->SetObserver(*iHwDeviceObserver);
sl@0
   362
	error = iDataPath->AddCodec(*iCodec);
sl@0
   363
	
sl@0
   364
    if (error == KErrNone)
sl@0
   365
		{
sl@0
   366
		error = iDataPath->Start();	
sl@0
   367
		}
sl@0
   368
		
sl@0
   369
	return error;
sl@0
   370
	}
sl@0
   371
sl@0
   372
/**
sl@0
   373
Temporarily suspends the current task of decoding or encoding.
sl@0
   374
sl@0
   375
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   376
        another of the system-wide error codes.
sl@0
   377
*/
sl@0
   378
EXPORT_C TInt CMMFSwCodecWrapper::Pause()
sl@0
   379
	{
sl@0
   380
	// [ precondition that datapath exists ]
sl@0
   381
	if (!iDataPath) 
sl@0
   382
		return KErrNotReady;
sl@0
   383
sl@0
   384
	iDataPath->Pause();
sl@0
   385
	return KErrNone;
sl@0
   386
	}
sl@0
   387
sl@0
   388
/**
sl@0
   389
Stops the current on-going task.
sl@0
   390
sl@0
   391
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   392
        another of the system-wide error codes.
sl@0
   393
*/
sl@0
   394
EXPORT_C TInt CMMFSwCodecWrapper::Stop()
sl@0
   395
	{
sl@0
   396
	// [ precondition that datapath exists ]
sl@0
   397
	if (!iDataPath)
sl@0
   398
		return KErrNotReady;
sl@0
   399
sl@0
   400
	iDataPath->Stop();
sl@0
   401
	return KErrNone;
sl@0
   402
	}
sl@0
   403
sl@0
   404
sl@0
   405
/**
sl@0
   406
Stops and deletes the codec.
sl@0
   407
sl@0
   408
This default implementation simply calls DeleteCodec() and then Stop()
sl@0
   409
but real hardware devices might use this method to free up resources.
sl@0
   410
sl@0
   411
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   412
        another of the system-wide error codes.
sl@0
   413
*/
sl@0
   414
EXPORT_C TInt CMMFSwCodecWrapper::StopAndDeleteCodec()
sl@0
   415
	{
sl@0
   416
	TInt stopError = Stop();
sl@0
   417
	TInt deleteError = DeleteCodec();
sl@0
   418
sl@0
   419
	if (stopError != KErrNone)
sl@0
   420
		return stopError;
sl@0
   421
	else
sl@0
   422
		return deleteError;
sl@0
   423
	}
sl@0
   424
sl@0
   425
/**
sl@0
   426
Deletes the codec
sl@0
   427
This default implementation does nothing
sl@0
   428
but real hardware devices might use this method to free up resources.
sl@0
   429
@return		Error code. KErrNone if successful
sl@0
   430
*/
sl@0
   431
EXPORT_C TInt CMMFSwCodecWrapper::DeleteCodec()
sl@0
   432
	{
sl@0
   433
	return KErrNone;
sl@0
   434
	}
sl@0
   435
sl@0
   436
/**
sl@0
   437
Call this function to notify hardware device implementation that
sl@0
   438
data is available in aFillBufferPtr for decoding.
sl@0
   439
sl@0
   440
@param aFillBufferPtr
sl@0
   441
       The data buffer filled by the observer.
sl@0
   442
sl@0
   443
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   444
        another of the system-wide error codes.
sl@0
   445
*/
sl@0
   446
EXPORT_C TInt CMMFSwCodecWrapper::ThisHwBufferFilled(CMMFBuffer& aFillBufferPtr)
sl@0
   447
	{
sl@0
   448
	TRAPD(err,iDataPath->BufferFilledL(STATIC_CAST(CMMFDataBuffer&, aFillBufferPtr)));
sl@0
   449
	return err;
sl@0
   450
	}
sl@0
   451
sl@0
   452
/**
sl@0
   453
Call this function to notify hardware device implementation that
sl@0
   454
data in aEmptyBufferPtr from encoding is processed.
sl@0
   455
sl@0
   456
@param  aBuffer
sl@0
   457
        The data buffer processed by observer.
sl@0
   458
sl@0
   459
@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   460
        another of the system-wide error codes.
sl@0
   461
*/
sl@0
   462
EXPORT_C TInt CMMFSwCodecWrapper::ThisHwBufferEmptied(CMMFBuffer& aBuffer)
sl@0
   463
	{
sl@0
   464
	TRAPD(err,iDataPath->BufferEmptiedL(STATIC_CAST(CMMFDataBuffer&, aBuffer)));
sl@0
   465
	return err;
sl@0
   466
	}
sl@0
   467
sl@0
   468
sl@0
   469
/**
sl@0
   470
Retrieves a custom interface to the device.
sl@0
   471
The reference CMMFSwCodecWrapper supports two standard custom interfaces,
sl@0
   472
MPlayCustomInterface and MRecordCustomInterface.
sl@0
   473
sl@0
   474
@param	aInterface
sl@0
   475
		Interface UID, defined with the custom interface.
sl@0
   476
		aInterface = KMmfPlaySettingsCustomInterface for MPlayCustomInterface,
sl@0
   477
		aInterface = KMmfRecordSettingsCustomInterface for MRecordCustomInterface.
sl@0
   478
		aInterface = KMmfUidEmptyBuffersCustomInterface for MEmptyBuffersCustomInterface
sl@0
   479
		Actual device implementations of CMMFSwCodecWrapper may do this differently however.
sl@0
   480
@return A pointer to the interface implementation, or NULL if the device can not
sl@0
   481
		implement the interface requested. The return value must be cast to the
sl@0
   482
		correct type by the user.
sl@0
   483
*/
sl@0
   484
EXPORT_C TAny* CMMFSwCodecWrapper::CustomInterface(TUid aInterface)
sl@0
   485
	{
sl@0
   486
	TAny* ret = NULL;
sl@0
   487
	TInt err = KErrNone;
sl@0
   488
	if (aInterface.iUid == KMmfPlaySettingsCustomInterface)
sl@0
   489
		{
sl@0
   490
		if (!iPlayCustomInterface)
sl@0
   491
			TRAP(err,iPlayCustomInterface = new(ELeave)TPlayCustomInterface());
sl@0
   492
		if (err)
sl@0
   493
			ret = NULL;
sl@0
   494
		else
sl@0
   495
			ret = static_cast<TAny*>(iPlayCustomInterface);
sl@0
   496
		}
sl@0
   497
	else if (aInterface.iUid == KMmfRecordSettingsCustomInterface)
sl@0
   498
		{
sl@0
   499
		if (!iRecordCustomInterface)
sl@0
   500
			TRAP(err,iRecordCustomInterface = new(ELeave)TRecordCustomInterface());
sl@0
   501
		if (err)
sl@0
   502
			ret = NULL;
sl@0
   503
		else 
sl@0
   504
			ret = static_cast<TAny*>(iRecordCustomInterface);
sl@0
   505
		}
sl@0
   506
		
sl@0
   507
	else if (aInterface.iUid == KMmfUidEmptyBuffersCustomInterface || aInterface == KTimePlayedCustomInterfaceTypeUid || aInterface == KIgnoreUnderflowCustomInterfaceTypeUid)
sl@0
   508
		{
sl@0
   509
		if (!iDataPath)
sl@0
   510
			{
sl@0
   511
			ret = NULL;			
sl@0
   512
			}
sl@0
   513
		else
sl@0
   514
			{
sl@0
   515
			ret = static_cast<CMMFSwCodecDataPath*>(iDataPath)->CustomInterface(aInterface);	
sl@0
   516
			}	
sl@0
   517
		}
sl@0
   518
sl@0
   519
	return ret;
sl@0
   520
	}
sl@0
   521
sl@0
   522
sl@0
   523
/**
sl@0
   524
Used to configure the sample rate and stereo mode of a CMMFHwDevice plugin.
sl@0
   525
sl@0
   526
The configuration of HwDevices is device specific and is not used in any of the reference
sl@0
   527
devices that return KErrNotSupported.
sl@0
   528
sl@0
   529
@param  aConfig
sl@0
   530
        The device configuration.
sl@0
   531
*/
sl@0
   532
EXPORT_C TInt CMMFSwCodecWrapper::SetConfig(TTaskConfig& aConfig)
sl@0
   533
	{
sl@0
   534
	if (aConfig.iUid != KUidRefDevSoundTaskConfig)
sl@0
   535
		return KErrArgument;
sl@0
   536
	iSampleRate = aConfig.iRate;
sl@0
   537
	
sl@0
   538
	if (aConfig.iStereoMode == ETaskMono)
sl@0
   539
		{
sl@0
   540
		iChannels = 1;
sl@0
   541
		}
sl@0
   542
	else if (aConfig.iStereoMode == ETaskInterleaved || aConfig.iStereoMode == ETaskNonInterleaved)
sl@0
   543
		{
sl@0
   544
		iChannels = 2;
sl@0
   545
		}
sl@0
   546
	else
sl@0
   547
		{
sl@0
   548
		return KErrArgument;
sl@0
   549
		}
sl@0
   550
	return KErrNone;
sl@0
   551
	}
sl@0
   552
sl@0
   553
/**
sl@0
   554
Used to set iVbrFlag on the datapath.
sl@0
   555
sl@0
   556
This method is used to set the iVbrFlag in datapath. This flag is added to datapath to avail the 
sl@0
   557
alternative dataflow wherein datapath makes sure that destinationbuffer is filled to its maximum length
sl@0
   558
before sending it to the sound driver. Sending the buffer directly to the device causes underflow incase of VBR codecs.
sl@0
   559
*/
sl@0
   560
EXPORT_C void CMMFSwCodecWrapper::SetVbrFlag()
sl@0
   561
	{
sl@0
   562
	if(iDataPath)
sl@0
   563
		{
sl@0
   564
		TUid cUid = TUid::Uid(KSetVbrFlagCustomInterfaceTypeUid);
sl@0
   565
		iDataPath->CustomInterface(cUid);
sl@0
   566
		}
sl@0
   567
	}
sl@0
   568
sl@0
   569