os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/eaacplusdecoderci.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) 2007-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 <ecom/implementationproxy.h>
sl@0
    17
#include <ecom/implementationproxy.h>
sl@0
    18
#include <ecom/ecom.h>
sl@0
    19
sl@0
    20
#include "eaacplusdecoderci.h"
sl@0
    21
sl@0
    22
sl@0
    23
// MUX //
sl@0
    24
/*****************************************************************************/
sl@0
    25
sl@0
    26
TInt CMMFEAacPlusDecoderMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
    27
	{
sl@0
    28
	// attempt to open the interface link with the
sl@0
    29
	// remote slave device
sl@0
    30
	iRemoteHandle = -1;
sl@0
    31
	TUid slaveId = {KMmfUidCustomInterfaceEAacPlusDecoderDeMux};
sl@0
    32
		
sl@0
    33
	TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
sl@0
    34
	if (handle >= 0)
sl@0
    35
		{
sl@0
    36
		iRemoteHandle = handle;
sl@0
    37
		}
sl@0
    38
		
sl@0
    39
	return iRemoteHandle;
sl@0
    40
	}
sl@0
    41
sl@0
    42
/*****************************************************************************/
sl@0
    43
void CMMFEAacPlusDecoderMux::Release()
sl@0
    44
	{
sl@0
    45
	// close the slave device if it exists
sl@0
    46
	if (iRemoteHandle > 0)
sl@0
    47
		{
sl@0
    48
		// we assume the slave is closed correctly
sl@0
    49
		iUtility->CloseSlave(iRemoteHandle);
sl@0
    50
		}
sl@0
    51
	
sl@0
    52
	TUid key = iDestructorKey;
sl@0
    53
	delete this;
sl@0
    54
	
sl@0
    55
	// tell ECom to destroy us
sl@0
    56
	REComSession::DestroyedImplementation(key);
sl@0
    57
	}
sl@0
    58
sl@0
    59
/*****************************************************************************/	
sl@0
    60
void CMMFEAacPlusDecoderMux::PassDestructorKey(TUid aDestructorKey)
sl@0
    61
	{
sl@0
    62
	// store the destructor key
sl@0
    63
	iDestructorKey = aDestructorKey;
sl@0
    64
	}
sl@0
    65
sl@0
    66
/*****************************************************************************/
sl@0
    67
void CMMFEAacPlusDecoderMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
sl@0
    68
	{
sl@0
    69
	// store a pointer to the utility
sl@0
    70
	iUtility = aCustomUtility;
sl@0
    71
	}
sl@0
    72
sl@0
    73
/*****************************************************************************/	
sl@0
    74
MMMFDevSoundCustomInterfaceMuxPlugin* CMMFEAacPlusDecoderMux::NewL()
sl@0
    75
	{
sl@0
    76
	CMMFEAacPlusDecoderMux* self = new (ELeave) CMMFEAacPlusDecoderMux;
sl@0
    77
	return self;
sl@0
    78
	}
sl@0
    79
sl@0
    80
/*****************************************************************************/	
sl@0
    81
TAny* CMMFEAacPlusDecoderMux::CustomInterface(TUid /*aInterfaceId*/)
sl@0
    82
	{
sl@0
    83
	MEAacPlusDecoderIntfc* interface = this;
sl@0
    84
	return interface;
sl@0
    85
	}
sl@0
    86
	
sl@0
    87
/*****************************************************************************/
sl@0
    88
CMMFEAacPlusDecoderMux::CMMFEAacPlusDecoderMux() :
sl@0
    89
	iRemoteHandle(-1)
sl@0
    90
	{	
sl@0
    91
	}
sl@0
    92
sl@0
    93
/*****************************************************************************/
sl@0
    94
CMMFEAacPlusDecoderMux::~CMMFEAacPlusDecoderMux()
sl@0
    95
	{	
sl@0
    96
	}
sl@0
    97
sl@0
    98
/*****************************************************************************/
sl@0
    99
// from MEAacPlusDecoderIntfc
sl@0
   100
void CMMFEAacPlusDecoderMux::SetInputSamplingFrequency(TUint aInputSamplingFrequency)
sl@0
   101
	{
sl@0
   102
	if (iRemoteHandle > 0)
sl@0
   103
		{
sl@0
   104
		// send the frequency in the sync command
sl@0
   105
		TPckgBuf<TUint> freqBuffer(aInputSamplingFrequency);
sl@0
   106
		// No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
sl@0
   107
		iUtility->SendSlaveSyncCommand( iRemoteHandle,
sl@0
   108
										EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency,
sl@0
   109
										freqBuffer);
sl@0
   110
		}
sl@0
   111
	}
sl@0
   112
sl@0
   113
void CMMFEAacPlusDecoderMux::SetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType)
sl@0
   114
	{
sl@0
   115
	if (iRemoteHandle > 0)
sl@0
   116
		{
sl@0
   117
		// send the object type in the sync command
sl@0
   118
		TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> objTypeBuffer(aAudioObjectType);
sl@0
   119
		// No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
sl@0
   120
		iUtility->SendSlaveSyncCommand( iRemoteHandle,
sl@0
   121
										EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType,
sl@0
   122
										objTypeBuffer);
sl@0
   123
		}
sl@0
   124
	}
sl@0
   125
sl@0
   126
void CMMFEAacPlusDecoderMux::SetNumOfChannels(TUint aNumOfChannels)
sl@0
   127
	{
sl@0
   128
	if (iRemoteHandle > 0)
sl@0
   129
		{
sl@0
   130
		// send the number of channels in the sync command
sl@0
   131
		TPckgBuf<TUint> numBuffer(aNumOfChannels);
sl@0
   132
		// No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
sl@0
   133
		iUtility->SendSlaveSyncCommand( iRemoteHandle,
sl@0
   134
										EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels,
sl@0
   135
										numBuffer);
sl@0
   136
		}
sl@0
   137
	}
sl@0
   138
sl@0
   139
void CMMFEAacPlusDecoderMux::SetSbr(TBool aSbrEnabled)
sl@0
   140
	{
sl@0
   141
	if (iRemoteHandle > 0)
sl@0
   142
		{
sl@0
   143
		// send the SBR enabled flag in the sync command
sl@0
   144
		TPckgBuf<TBool> flagBuffer(aSbrEnabled);
sl@0
   145
		// No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
sl@0
   146
		iUtility->SendSlaveSyncCommand( iRemoteHandle,
sl@0
   147
										EMMFDevSoundCIEAacPlusDecoderSetSbr,
sl@0
   148
										flagBuffer);
sl@0
   149
		}
sl@0
   150
	}
sl@0
   151
sl@0
   152
void CMMFEAacPlusDecoderMux::SetDownSampledMode(TBool aDsmEnabled)
sl@0
   153
	{
sl@0
   154
	if (iRemoteHandle > 0)
sl@0
   155
		{
sl@0
   156
		// send the DSM enabled flag in the sync command
sl@0
   157
		TPckgBuf<TBool> flagBuffer(aDsmEnabled);
sl@0
   158
		// No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
sl@0
   159
		iUtility->SendSlaveSyncCommand( iRemoteHandle,
sl@0
   160
										EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode,
sl@0
   161
										flagBuffer);
sl@0
   162
		}
sl@0
   163
	}
sl@0
   164
sl@0
   165
TInt CMMFEAacPlusDecoderMux::ApplyConfig()
sl@0
   166
	{
sl@0
   167
	TInt retVal = KErrNotReady;
sl@0
   168
	if (iRemoteHandle > 0)
sl@0
   169
		{
sl@0
   170
		retVal = iUtility->SendSlaveSyncCommand(iRemoteHandle,
sl@0
   171
												EMMFDevSoundCIEAacPlusDecoderApplyConfig,
sl@0
   172
												KNullDesC8);
sl@0
   173
		}
sl@0
   174
	return retVal;
sl@0
   175
	}
sl@0
   176
sl@0
   177
TInt CMMFEAacPlusDecoderMux::GetInputSamplingFrequency(TUint& aInputSamplingFrequency)
sl@0
   178
	{
sl@0
   179
	TInt result = KErrNotReady;
sl@0
   180
sl@0
   181
	if (iRemoteHandle > 0)
sl@0
   182
		{
sl@0
   183
		TPckgBuf<TUint> freqBuffer;
sl@0
   184
		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
sl@0
   185
													  EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency,
sl@0
   186
													  KNullDesC8,
sl@0
   187
													  freqBuffer);
sl@0
   188
		aInputSamplingFrequency = freqBuffer();
sl@0
   189
		}
sl@0
   190
		
sl@0
   191
	return result;
sl@0
   192
	}
sl@0
   193
sl@0
   194
TInt CMMFEAacPlusDecoderMux::GetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType)
sl@0
   195
	{
sl@0
   196
	TInt result = KErrNotReady;
sl@0
   197
sl@0
   198
	if (iRemoteHandle > 0) 
sl@0
   199
		{
sl@0
   200
		TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> objTypeBuffer;
sl@0
   201
		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
sl@0
   202
													  EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType,
sl@0
   203
													  KNullDesC8,
sl@0
   204
													  objTypeBuffer);
sl@0
   205
		aAudioObjectType = objTypeBuffer();
sl@0
   206
		}
sl@0
   207
sl@0
   208
	return result;
sl@0
   209
	}
sl@0
   210
sl@0
   211
TInt CMMFEAacPlusDecoderMux::GetNumOfChannels(TUint& aNumOfChannels)
sl@0
   212
	{
sl@0
   213
	TInt result = KErrNotReady;
sl@0
   214
	if (iRemoteHandle > 0)
sl@0
   215
		{
sl@0
   216
		TPckgBuf<TUint> channelsBuffer;
sl@0
   217
		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
sl@0
   218
													  EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels,
sl@0
   219
													  KNullDesC8,
sl@0
   220
													  channelsBuffer);
sl@0
   221
		aNumOfChannels = channelsBuffer();
sl@0
   222
		}
sl@0
   223
		
sl@0
   224
	return result;
sl@0
   225
	}
sl@0
   226
sl@0
   227
TInt CMMFEAacPlusDecoderMux::GetSbr(TBool& aSbrEnabled)
sl@0
   228
	{
sl@0
   229
	TInt result = KErrNotReady;
sl@0
   230
	if (iRemoteHandle > 0)
sl@0
   231
		{
sl@0
   232
		TPckgBuf<TBool> flagBuffer;
sl@0
   233
		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
sl@0
   234
													  EMMFDevSoundCIEAacPlusDecoderGetSbr,
sl@0
   235
													  KNullDesC8,
sl@0
   236
													  flagBuffer);
sl@0
   237
		aSbrEnabled = flagBuffer();
sl@0
   238
		}
sl@0
   239
		
sl@0
   240
	return result;
sl@0
   241
	}
sl@0
   242
sl@0
   243
TInt CMMFEAacPlusDecoderMux::GetDownSampledMode(TBool& aDsmEnabled)
sl@0
   244
	{
sl@0
   245
	TInt result = KErrNotReady;
sl@0
   246
	if (iRemoteHandle > 0)
sl@0
   247
		{
sl@0
   248
		TPckgBuf<TBool> flagBuffer;
sl@0
   249
		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
sl@0
   250
													  EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode,
sl@0
   251
													  KNullDesC8,
sl@0
   252
													  flagBuffer);
sl@0
   253
		aDsmEnabled = flagBuffer();
sl@0
   254
		}
sl@0
   255
		
sl@0
   256
	return result;
sl@0
   257
	}
sl@0
   258
sl@0
   259
// DEMUX //	
sl@0
   260
/*****************************************************************************/
sl@0
   261
TInt CMMFEAacPlusDecoderDeMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
   262
	{
sl@0
   263
	return KErrNone;
sl@0
   264
	}
sl@0
   265
sl@0
   266
/*****************************************************************************/	
sl@0
   267
void CMMFEAacPlusDecoderDeMux::Release()
sl@0
   268
	{
sl@0
   269
	TUid key = iDestructorKey;
sl@0
   270
	
sl@0
   271
	delete this;
sl@0
   272
	
sl@0
   273
	// tell ECom to destroy us
sl@0
   274
	REComSession::DestroyedImplementation(key);
sl@0
   275
	}
sl@0
   276
	
sl@0
   277
/*****************************************************************************/	
sl@0
   278
void CMMFEAacPlusDecoderDeMux::PassDestructorKey(TUid aDestructorKey)
sl@0
   279
	{
sl@0
   280
	// store the destructor key
sl@0
   281
	iDestructorKey = aDestructorKey;
sl@0
   282
	}
sl@0
   283
	
sl@0
   284
/*****************************************************************************/	
sl@0
   285
void CMMFEAacPlusDecoderDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
sl@0
   286
	{
sl@0
   287
	iTarget = aTarget;
sl@0
   288
	}
sl@0
   289
sl@0
   290
/*****************************************************************************/	
sl@0
   291
void CMMFEAacPlusDecoderDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
sl@0
   292
	{
sl@0
   293
	// store a pointer to the utility
sl@0
   294
	iUtility = aCustomUtility;
sl@0
   295
	}
sl@0
   296
sl@0
   297
/*****************************************************************************/
sl@0
   298
void CMMFEAacPlusDecoderDeMux::RefreshL()
sl@0
   299
	{
sl@0
   300
	// refetch the EAAC+ decoder custom interface if we already have a target
sl@0
   301
	if (iTarget)
sl@0
   302
		{
sl@0
   303
		iInterfaceEAacPlusDecoder = static_cast <MEAacPlusDecoderIntfc*> (iTarget->CustomInterface(KUidEAacPlusDecoderIntfc));
sl@0
   304
		if (!iInterfaceEAacPlusDecoder)
sl@0
   305
			{
sl@0
   306
			User::Leave(KErrNotSupported);
sl@0
   307
			}
sl@0
   308
		}
sl@0
   309
	}
sl@0
   310
sl@0
   311
/*****************************************************************************/
sl@0
   312
MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFEAacPlusDecoderDeMux::NewL()
sl@0
   313
	{
sl@0
   314
	CMMFEAacPlusDecoderDeMux* self = new (ELeave) CMMFEAacPlusDecoderDeMux;
sl@0
   315
	return self;
sl@0
   316
	}
sl@0
   317
sl@0
   318
/*****************************************************************************/	
sl@0
   319
CMMFEAacPlusDecoderDeMux::CMMFEAacPlusDecoderDeMux()
sl@0
   320
	{	
sl@0
   321
	}
sl@0
   322
sl@0
   323
/*****************************************************************************/
sl@0
   324
CMMFEAacPlusDecoderDeMux::~CMMFEAacPlusDecoderDeMux()
sl@0
   325
	{
sl@0
   326
	}
sl@0
   327
sl@0
   328
/*****************************************************************************/
sl@0
   329
TInt CMMFEAacPlusDecoderDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
sl@0
   330
	{
sl@0
   331
	// fetch the EAAC+ decoder Hw Device custom interface
sl@0
   332
	iInterfaceEAacPlusDecoder = static_cast<MEAacPlusDecoderIntfc*> (iTarget->CustomInterface(KUidEAacPlusDecoderIntfc)); 
sl@0
   333
	
sl@0
   334
	if (!iInterfaceEAacPlusDecoder)
sl@0
   335
		{
sl@0
   336
		User::Leave(KErrNotSupported);
sl@0
   337
		}
sl@0
   338
sl@0
   339
	return KErrNone;
sl@0
   340
	}
sl@0
   341
	
sl@0
   342
/*****************************************************************************/	
sl@0
   343
void CMMFEAacPlusDecoderDeMux::DoCloseSlaveL(TInt /*aHandle*/)
sl@0
   344
	{
sl@0
   345
	// nothing to do
sl@0
   346
	}
sl@0
   347
sl@0
   348
/*****************************************************************************/
sl@0
   349
// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   350
// using DeMux utility
sl@0
   351
TInt CMMFEAacPlusDecoderDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
sl@0
   352
	{
sl@0
   353
	TMMFDevSoundCIMessageData data;
sl@0
   354
	
sl@0
   355
	// decode message
sl@0
   356
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   357
	
sl@0
   358
	TInt retVal = -1;
sl@0
   359
	switch (data.iCommand)
sl@0
   360
		{
sl@0
   361
		case EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency:
sl@0
   362
			{
sl@0
   363
			TPckgBuf<TUint> freqBuffer;
sl@0
   364
			iUtility->ReadFromInputDesL(aMessage, &freqBuffer);
sl@0
   365
			DoSetInputSamplingFrequency(freqBuffer());
sl@0
   366
			retVal = KErrNone;
sl@0
   367
			break;
sl@0
   368
			}
sl@0
   369
		case EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType:
sl@0
   370
			{
sl@0
   371
			TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> audioObjectTypeBuffer;
sl@0
   372
			iUtility->ReadFromInputDesL(aMessage, &audioObjectTypeBuffer);
sl@0
   373
			DoSetAudioObjectType(audioObjectTypeBuffer());
sl@0
   374
			retVal = KErrNone;
sl@0
   375
			break;
sl@0
   376
			}
sl@0
   377
		case EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels:
sl@0
   378
			{
sl@0
   379
			TPckgBuf<TUint> numChannelsBuffer;
sl@0
   380
			iUtility->ReadFromInputDesL(aMessage, &numChannelsBuffer);
sl@0
   381
			DoSetNumOfChannels(numChannelsBuffer());
sl@0
   382
			retVal = KErrNone;
sl@0
   383
			break;
sl@0
   384
			}
sl@0
   385
		case EMMFDevSoundCIEAacPlusDecoderSetSbr:
sl@0
   386
			{
sl@0
   387
			TPckgBuf<TBool> flagBuffer;
sl@0
   388
			iUtility->ReadFromInputDesL(aMessage, &flagBuffer);
sl@0
   389
			DoSetSbr(flagBuffer());
sl@0
   390
			retVal = KErrNone;
sl@0
   391
			break;
sl@0
   392
			}
sl@0
   393
		case EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode:
sl@0
   394
			{
sl@0
   395
			TPckgBuf<TBool> flagBuffer;
sl@0
   396
			iUtility->ReadFromInputDesL(aMessage, &flagBuffer);
sl@0
   397
			DoSetDownSampledMode(flagBuffer());
sl@0
   398
			retVal = KErrNone;
sl@0
   399
			break;
sl@0
   400
			}
sl@0
   401
		case EMMFDevSoundCIEAacPlusDecoderApplyConfig:
sl@0
   402
			{
sl@0
   403
			retVal = DoApplyConfig();
sl@0
   404
			break;
sl@0
   405
			}
sl@0
   406
		default:
sl@0
   407
			{
sl@0
   408
			User::Leave(KErrNotSupported);
sl@0
   409
			}		
sl@0
   410
		};
sl@0
   411
		
sl@0
   412
	return retVal;
sl@0
   413
	}
sl@0
   414
	
sl@0
   415
/*****************************************************************************/	
sl@0
   416
TInt CMMFEAacPlusDecoderDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
sl@0
   417
	{
sl@0
   418
	TMMFDevSoundCIMessageData data;
sl@0
   419
	
sl@0
   420
	// decode message
sl@0
   421
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   422
	
sl@0
   423
	TInt retVal = -1;
sl@0
   424
	switch (data.iCommand)
sl@0
   425
		{
sl@0
   426
		case EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency:
sl@0
   427
			{
sl@0
   428
			TPckgBuf<TUint> freqBuf;
sl@0
   429
			retVal = DoGetInputSamplingFrequency(freqBuf());
sl@0
   430
			iUtility->WriteToOutputDesL(aMessage, freqBuf);		
sl@0
   431
			break;
sl@0
   432
			}
sl@0
   433
		case EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType:
sl@0
   434
			{
sl@0
   435
			TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> objTypeBuf;
sl@0
   436
			retVal = DoGetAudioObjectType(objTypeBuf());
sl@0
   437
			iUtility->WriteToOutputDesL(aMessage, objTypeBuf);		
sl@0
   438
			break;
sl@0
   439
			}
sl@0
   440
		case EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels:
sl@0
   441
			{
sl@0
   442
			TPckgBuf<TUint> channelsBuf;
sl@0
   443
			retVal = DoGetNumOfChannels(channelsBuf());
sl@0
   444
			iUtility->WriteToOutputDesL(aMessage, channelsBuf);		
sl@0
   445
			break;
sl@0
   446
			}
sl@0
   447
		case EMMFDevSoundCIEAacPlusDecoderGetSbr:
sl@0
   448
			{
sl@0
   449
			TPckgBuf<TBool> flagBuf;
sl@0
   450
			retVal = DoGetSbr(flagBuf());
sl@0
   451
			iUtility->WriteToOutputDesL(aMessage, flagBuf);		
sl@0
   452
			break;
sl@0
   453
			}
sl@0
   454
		case EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode:
sl@0
   455
			{
sl@0
   456
			TPckgBuf<TBool> flagBuf;
sl@0
   457
			retVal = DoGetDownSampledMode(flagBuf());
sl@0
   458
			iUtility->WriteToOutputDesL(aMessage, flagBuf);		
sl@0
   459
			break;
sl@0
   460
			}
sl@0
   461
		default:
sl@0
   462
			{
sl@0
   463
			User::Leave(KErrNotSupported);
sl@0
   464
			}
sl@0
   465
		}
sl@0
   466
sl@0
   467
	return retVal;
sl@0
   468
	}
sl@0
   469
	
sl@0
   470
/*****************************************************************************/	
sl@0
   471
void CMMFEAacPlusDecoderDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   472
	{
sl@0
   473
	// not used in this interface
sl@0
   474
	}
sl@0
   475
	
sl@0
   476
/*****************************************************************************/	
sl@0
   477
void CMMFEAacPlusDecoderDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   478
	{
sl@0
   479
	// not used in this interface
sl@0
   480
	}
sl@0
   481
sl@0
   482
/*****************************************************************************/
sl@0
   483
// EAAC+ Decoder custom interface implementation
sl@0
   484
void CMMFEAacPlusDecoderDeMux::DoSetInputSamplingFrequency(TUint aInputSamplingFrequency)
sl@0
   485
	{
sl@0
   486
	if (iInterfaceEAacPlusDecoder)
sl@0
   487
		{
sl@0
   488
		iInterfaceEAacPlusDecoder->SetInputSamplingFrequency(aInputSamplingFrequency);
sl@0
   489
		}
sl@0
   490
	}
sl@0
   491
	
sl@0
   492
/*****************************************************************************/	
sl@0
   493
void CMMFEAacPlusDecoderDeMux::DoSetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType)
sl@0
   494
	{
sl@0
   495
	if (iInterfaceEAacPlusDecoder)
sl@0
   496
		{
sl@0
   497
		iInterfaceEAacPlusDecoder->SetAudioObjectType(aAudioObjectType);
sl@0
   498
		}		
sl@0
   499
	}
sl@0
   500
	
sl@0
   501
/*****************************************************************************/	
sl@0
   502
void CMMFEAacPlusDecoderDeMux::DoSetNumOfChannels(TUint aNumOfChannels)
sl@0
   503
	{
sl@0
   504
	if (iInterfaceEAacPlusDecoder)
sl@0
   505
		{
sl@0
   506
		iInterfaceEAacPlusDecoder->SetNumOfChannels(aNumOfChannels);
sl@0
   507
		}		
sl@0
   508
	}
sl@0
   509
	
sl@0
   510
/*****************************************************************************/	
sl@0
   511
void CMMFEAacPlusDecoderDeMux::DoSetSbr(TBool aSbrEnabled)
sl@0
   512
	{
sl@0
   513
	if (iInterfaceEAacPlusDecoder)
sl@0
   514
		{
sl@0
   515
		iInterfaceEAacPlusDecoder->SetSbr(aSbrEnabled);
sl@0
   516
		}		
sl@0
   517
	}
sl@0
   518
	
sl@0
   519
/*****************************************************************************/	
sl@0
   520
void CMMFEAacPlusDecoderDeMux::DoSetDownSampledMode(TBool aDsmEnabled)
sl@0
   521
	{
sl@0
   522
	if (iInterfaceEAacPlusDecoder)
sl@0
   523
		{
sl@0
   524
		iInterfaceEAacPlusDecoder->SetDownSampledMode(aDsmEnabled);
sl@0
   525
		}		
sl@0
   526
	}
sl@0
   527
	
sl@0
   528
/*****************************************************************************/	
sl@0
   529
TInt CMMFEAacPlusDecoderDeMux::DoApplyConfig()
sl@0
   530
	{
sl@0
   531
	// Initialise the return value to an error that reflects the plugin's not ready
sl@0
   532
	TInt retVal = KErrNotReady;
sl@0
   533
	if (iInterfaceEAacPlusDecoder)
sl@0
   534
		{
sl@0
   535
		retVal = iInterfaceEAacPlusDecoder->ApplyConfig();
sl@0
   536
		}
sl@0
   537
	return retVal;
sl@0
   538
	}
sl@0
   539
	
sl@0
   540
/*****************************************************************************/	
sl@0
   541
TInt CMMFEAacPlusDecoderDeMux::DoGetInputSamplingFrequency(TUint& aInputSamplingFrequency)
sl@0
   542
	{
sl@0
   543
	TInt ret = KErrNotReady;
sl@0
   544
	if (iInterfaceEAacPlusDecoder)
sl@0
   545
		{
sl@0
   546
		ret = iInterfaceEAacPlusDecoder->GetInputSamplingFrequency(aInputSamplingFrequency);
sl@0
   547
		}
sl@0
   548
	return ret;
sl@0
   549
	}
sl@0
   550
	
sl@0
   551
/*****************************************************************************/	
sl@0
   552
TInt CMMFEAacPlusDecoderDeMux::DoGetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType)
sl@0
   553
	{
sl@0
   554
	TInt err = KErrNotReady;
sl@0
   555
	if (iInterfaceEAacPlusDecoder)
sl@0
   556
		{
sl@0
   557
		err = iInterfaceEAacPlusDecoder->GetAudioObjectType(aAudioObjectType);
sl@0
   558
		}
sl@0
   559
	return err;
sl@0
   560
	}
sl@0
   561
sl@0
   562
/*****************************************************************************/	
sl@0
   563
TInt CMMFEAacPlusDecoderDeMux::DoGetNumOfChannels(TUint& aNumOfChannels)
sl@0
   564
	{
sl@0
   565
	TInt err = KErrNotReady;
sl@0
   566
	if (iInterfaceEAacPlusDecoder)
sl@0
   567
		{
sl@0
   568
		err = iInterfaceEAacPlusDecoder->GetNumOfChannels(aNumOfChannels);
sl@0
   569
		}
sl@0
   570
	return err;
sl@0
   571
	}
sl@0
   572
sl@0
   573
/*****************************************************************************/	
sl@0
   574
TInt CMMFEAacPlusDecoderDeMux::DoGetSbr(TBool& aSbrEnabled)
sl@0
   575
	{
sl@0
   576
	TInt err = KErrNotReady;
sl@0
   577
	if (iInterfaceEAacPlusDecoder)
sl@0
   578
		{
sl@0
   579
		err = iInterfaceEAacPlusDecoder->GetSbr(aSbrEnabled);
sl@0
   580
		}
sl@0
   581
	return err;
sl@0
   582
	}
sl@0
   583
	
sl@0
   584
/*****************************************************************************/	
sl@0
   585
TInt CMMFEAacPlusDecoderDeMux::DoGetDownSampledMode(TBool& aDsmEnabled)
sl@0
   586
	{
sl@0
   587
	TInt err = KErrNotReady;
sl@0
   588
	if (iInterfaceEAacPlusDecoder)
sl@0
   589
		{
sl@0
   590
		err = iInterfaceEAacPlusDecoder->GetDownSampledMode(aDsmEnabled);
sl@0
   591
		}
sl@0
   592
	return err;
sl@0
   593
	}
sl@0
   594
	
sl@0
   595
/*****************************************************************************/	
sl@0
   596
	
sl@0
   597
/*****************************************************************************/
sl@0
   598
//
sl@0
   599
// ImplementationTable
sl@0
   600
//
sl@0
   601
sl@0
   602
const TImplementationProxy ImplementationTable[] = 
sl@0
   603
	{
sl@0
   604
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceEAacPlusDecoderMux, CMMFEAacPlusDecoderMux::NewL),
sl@0
   605
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceEAacPlusDecoderDeMux, CMMFEAacPlusDecoderDeMux::NewL),
sl@0
   606
	};
sl@0
   607
sl@0
   608
/*****************************************************************************/
sl@0
   609
//
sl@0
   610
// ImplementationGroupProxy
sl@0
   611
//
sl@0
   612
//
sl@0
   613
sl@0
   614
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
sl@0
   615
	{
sl@0
   616
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
sl@0
   617
sl@0
   618
	return ImplementationTable;
sl@0
   619
	}
sl@0
   620
sl@0
   621