sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "eaacplusdecoderci.h" sl@0: sl@0: sl@0: // MUX // sl@0: /*****************************************************************************/ sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::OpenInterface(TUid /*aInterfaceId*/) sl@0: { sl@0: // attempt to open the interface link with the sl@0: // remote slave device sl@0: iRemoteHandle = -1; sl@0: TUid slaveId = {KMmfUidCustomInterfaceEAacPlusDecoderDeMux}; sl@0: sl@0: TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8); sl@0: if (handle >= 0) sl@0: { sl@0: iRemoteHandle = handle; sl@0: } sl@0: sl@0: return iRemoteHandle; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderMux::Release() sl@0: { sl@0: // close the slave device if it exists sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: // we assume the slave is closed correctly sl@0: iUtility->CloseSlave(iRemoteHandle); sl@0: } sl@0: sl@0: TUid key = iDestructorKey; sl@0: delete this; sl@0: sl@0: // tell ECom to destroy us sl@0: REComSession::DestroyedImplementation(key); sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderMux::PassDestructorKey(TUid aDestructorKey) sl@0: { sl@0: // store the destructor key sl@0: iDestructorKey = aDestructorKey; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility) sl@0: { sl@0: // store a pointer to the utility sl@0: iUtility = aCustomUtility; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: MMMFDevSoundCustomInterfaceMuxPlugin* CMMFEAacPlusDecoderMux::NewL() sl@0: { sl@0: CMMFEAacPlusDecoderMux* self = new (ELeave) CMMFEAacPlusDecoderMux; sl@0: return self; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TAny* CMMFEAacPlusDecoderMux::CustomInterface(TUid /*aInterfaceId*/) sl@0: { sl@0: MEAacPlusDecoderIntfc* interface = this; sl@0: return interface; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: CMMFEAacPlusDecoderMux::CMMFEAacPlusDecoderMux() : sl@0: iRemoteHandle(-1) sl@0: { sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: CMMFEAacPlusDecoderMux::~CMMFEAacPlusDecoderMux() sl@0: { sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: // from MEAacPlusDecoderIntfc sl@0: void CMMFEAacPlusDecoderMux::SetInputSamplingFrequency(TUint aInputSamplingFrequency) sl@0: { sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: // send the frequency in the sync command sl@0: TPckgBuf freqBuffer(aInputSamplingFrequency); sl@0: // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand sl@0: iUtility->SendSlaveSyncCommand( iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency, sl@0: freqBuffer); sl@0: } sl@0: } sl@0: sl@0: void CMMFEAacPlusDecoderMux::SetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType) sl@0: { sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: // send the object type in the sync command sl@0: TPckgBuf objTypeBuffer(aAudioObjectType); sl@0: // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand sl@0: iUtility->SendSlaveSyncCommand( iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType, sl@0: objTypeBuffer); sl@0: } sl@0: } sl@0: sl@0: void CMMFEAacPlusDecoderMux::SetNumOfChannels(TUint aNumOfChannels) sl@0: { sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: // send the number of channels in the sync command sl@0: TPckgBuf numBuffer(aNumOfChannels); sl@0: // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand sl@0: iUtility->SendSlaveSyncCommand( iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels, sl@0: numBuffer); sl@0: } sl@0: } sl@0: sl@0: void CMMFEAacPlusDecoderMux::SetSbr(TBool aSbrEnabled) sl@0: { sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: // send the SBR enabled flag in the sync command sl@0: TPckgBuf flagBuffer(aSbrEnabled); sl@0: // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand sl@0: iUtility->SendSlaveSyncCommand( iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderSetSbr, sl@0: flagBuffer); sl@0: } sl@0: } sl@0: sl@0: void CMMFEAacPlusDecoderMux::SetDownSampledMode(TBool aDsmEnabled) sl@0: { sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: // send the DSM enabled flag in the sync command sl@0: TPckgBuf flagBuffer(aDsmEnabled); sl@0: // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand sl@0: iUtility->SendSlaveSyncCommand( iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode, sl@0: flagBuffer); sl@0: } sl@0: } sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::ApplyConfig() sl@0: { sl@0: TInt retVal = KErrNotReady; sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: retVal = iUtility->SendSlaveSyncCommand(iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderApplyConfig, sl@0: KNullDesC8); sl@0: } sl@0: return retVal; sl@0: } sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::GetInputSamplingFrequency(TUint& aInputSamplingFrequency) sl@0: { sl@0: TInt result = KErrNotReady; sl@0: sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: TPckgBuf freqBuffer; sl@0: result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency, sl@0: KNullDesC8, sl@0: freqBuffer); sl@0: aInputSamplingFrequency = freqBuffer(); sl@0: } sl@0: sl@0: return result; sl@0: } sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::GetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType) sl@0: { sl@0: TInt result = KErrNotReady; sl@0: sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: TPckgBuf objTypeBuffer; sl@0: result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType, sl@0: KNullDesC8, sl@0: objTypeBuffer); sl@0: aAudioObjectType = objTypeBuffer(); sl@0: } sl@0: sl@0: return result; sl@0: } sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::GetNumOfChannels(TUint& aNumOfChannels) sl@0: { sl@0: TInt result = KErrNotReady; sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: TPckgBuf channelsBuffer; sl@0: result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels, sl@0: KNullDesC8, sl@0: channelsBuffer); sl@0: aNumOfChannels = channelsBuffer(); sl@0: } sl@0: sl@0: return result; sl@0: } sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::GetSbr(TBool& aSbrEnabled) sl@0: { sl@0: TInt result = KErrNotReady; sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: TPckgBuf flagBuffer; sl@0: result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderGetSbr, sl@0: KNullDesC8, sl@0: flagBuffer); sl@0: aSbrEnabled = flagBuffer(); sl@0: } sl@0: sl@0: return result; sl@0: } sl@0: sl@0: TInt CMMFEAacPlusDecoderMux::GetDownSampledMode(TBool& aDsmEnabled) sl@0: { sl@0: TInt result = KErrNotReady; sl@0: if (iRemoteHandle > 0) sl@0: { sl@0: TPckgBuf flagBuffer; sl@0: result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, sl@0: EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode, sl@0: KNullDesC8, sl@0: flagBuffer); sl@0: aDsmEnabled = flagBuffer(); sl@0: } sl@0: sl@0: return result; sl@0: } sl@0: sl@0: // DEMUX // sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::OpenInterface(TUid /*aInterfaceId*/) sl@0: { sl@0: return KErrNone; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::Release() sl@0: { sl@0: TUid key = iDestructorKey; sl@0: sl@0: delete this; sl@0: sl@0: // tell ECom to destroy us sl@0: REComSession::DestroyedImplementation(key); sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::PassDestructorKey(TUid aDestructorKey) sl@0: { sl@0: // store the destructor key sl@0: iDestructorKey = aDestructorKey; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget) sl@0: { sl@0: iTarget = aTarget; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility) sl@0: { sl@0: // store a pointer to the utility sl@0: iUtility = aCustomUtility; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::RefreshL() sl@0: { sl@0: // refetch the EAAC+ decoder custom interface if we already have a target sl@0: if (iTarget) sl@0: { sl@0: iInterfaceEAacPlusDecoder = static_cast (iTarget->CustomInterface(KUidEAacPlusDecoderIntfc)); sl@0: if (!iInterfaceEAacPlusDecoder) sl@0: { sl@0: User::Leave(KErrNotSupported); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFEAacPlusDecoderDeMux::NewL() sl@0: { sl@0: CMMFEAacPlusDecoderDeMux* self = new (ELeave) CMMFEAacPlusDecoderDeMux; sl@0: return self; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: CMMFEAacPlusDecoderDeMux::CMMFEAacPlusDecoderDeMux() sl@0: { sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: CMMFEAacPlusDecoderDeMux::~CMMFEAacPlusDecoderDeMux() sl@0: { sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/) sl@0: { sl@0: // fetch the EAAC+ decoder Hw Device custom interface sl@0: iInterfaceEAacPlusDecoder = static_cast (iTarget->CustomInterface(KUidEAacPlusDecoderIntfc)); sl@0: sl@0: if (!iInterfaceEAacPlusDecoder) sl@0: { sl@0: User::Leave(KErrNotSupported); sl@0: } sl@0: sl@0: return KErrNone; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoCloseSlaveL(TInt /*aHandle*/) sl@0: { sl@0: // nothing to do sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: // original RMessage is supplied so that remote demux plugin can extract necessary details sl@0: // using DeMux utility sl@0: TInt CMMFEAacPlusDecoderDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage) sl@0: { sl@0: TMMFDevSoundCIMessageData data; sl@0: sl@0: // decode message sl@0: iUtility->GetSyncMessageDataL(aMessage, data); sl@0: sl@0: TInt retVal = -1; sl@0: switch (data.iCommand) sl@0: { sl@0: case EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency: sl@0: { sl@0: TPckgBuf freqBuffer; sl@0: iUtility->ReadFromInputDesL(aMessage, &freqBuffer); sl@0: DoSetInputSamplingFrequency(freqBuffer()); sl@0: retVal = KErrNone; sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType: sl@0: { sl@0: TPckgBuf audioObjectTypeBuffer; sl@0: iUtility->ReadFromInputDesL(aMessage, &audioObjectTypeBuffer); sl@0: DoSetAudioObjectType(audioObjectTypeBuffer()); sl@0: retVal = KErrNone; sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels: sl@0: { sl@0: TPckgBuf numChannelsBuffer; sl@0: iUtility->ReadFromInputDesL(aMessage, &numChannelsBuffer); sl@0: DoSetNumOfChannels(numChannelsBuffer()); sl@0: retVal = KErrNone; sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderSetSbr: sl@0: { sl@0: TPckgBuf flagBuffer; sl@0: iUtility->ReadFromInputDesL(aMessage, &flagBuffer); sl@0: DoSetSbr(flagBuffer()); sl@0: retVal = KErrNone; sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode: sl@0: { sl@0: TPckgBuf flagBuffer; sl@0: iUtility->ReadFromInputDesL(aMessage, &flagBuffer); sl@0: DoSetDownSampledMode(flagBuffer()); sl@0: retVal = KErrNone; sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderApplyConfig: sl@0: { sl@0: retVal = DoApplyConfig(); sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: User::Leave(KErrNotSupported); sl@0: } sl@0: }; sl@0: sl@0: return retVal; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage) sl@0: { sl@0: TMMFDevSoundCIMessageData data; sl@0: sl@0: // decode message sl@0: iUtility->GetSyncMessageDataL(aMessage, data); sl@0: sl@0: TInt retVal = -1; sl@0: switch (data.iCommand) sl@0: { sl@0: case EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency: sl@0: { sl@0: TPckgBuf freqBuf; sl@0: retVal = DoGetInputSamplingFrequency(freqBuf()); sl@0: iUtility->WriteToOutputDesL(aMessage, freqBuf); sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType: sl@0: { sl@0: TPckgBuf objTypeBuf; sl@0: retVal = DoGetAudioObjectType(objTypeBuf()); sl@0: iUtility->WriteToOutputDesL(aMessage, objTypeBuf); sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels: sl@0: { sl@0: TPckgBuf channelsBuf; sl@0: retVal = DoGetNumOfChannels(channelsBuf()); sl@0: iUtility->WriteToOutputDesL(aMessage, channelsBuf); sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderGetSbr: sl@0: { sl@0: TPckgBuf flagBuf; sl@0: retVal = DoGetSbr(flagBuf()); sl@0: iUtility->WriteToOutputDesL(aMessage, flagBuf); sl@0: break; sl@0: } sl@0: case EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode: sl@0: { sl@0: TPckgBuf flagBuf; sl@0: retVal = DoGetDownSampledMode(flagBuf()); sl@0: iUtility->WriteToOutputDesL(aMessage, flagBuf); sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: User::Leave(KErrNotSupported); sl@0: } sl@0: } sl@0: sl@0: return retVal; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/) sl@0: { sl@0: // not used in this interface sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/) sl@0: { sl@0: // not used in this interface sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: // EAAC+ Decoder custom interface implementation sl@0: void CMMFEAacPlusDecoderDeMux::DoSetInputSamplingFrequency(TUint aInputSamplingFrequency) sl@0: { sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: iInterfaceEAacPlusDecoder->SetInputSamplingFrequency(aInputSamplingFrequency); sl@0: } sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoSetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType) sl@0: { sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: iInterfaceEAacPlusDecoder->SetAudioObjectType(aAudioObjectType); sl@0: } sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoSetNumOfChannels(TUint aNumOfChannels) sl@0: { sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: iInterfaceEAacPlusDecoder->SetNumOfChannels(aNumOfChannels); sl@0: } sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoSetSbr(TBool aSbrEnabled) sl@0: { sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: iInterfaceEAacPlusDecoder->SetSbr(aSbrEnabled); sl@0: } sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: void CMMFEAacPlusDecoderDeMux::DoSetDownSampledMode(TBool aDsmEnabled) sl@0: { sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: iInterfaceEAacPlusDecoder->SetDownSampledMode(aDsmEnabled); sl@0: } sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoApplyConfig() sl@0: { sl@0: // Initialise the return value to an error that reflects the plugin's not ready sl@0: TInt retVal = KErrNotReady; sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: retVal = iInterfaceEAacPlusDecoder->ApplyConfig(); sl@0: } sl@0: return retVal; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoGetInputSamplingFrequency(TUint& aInputSamplingFrequency) sl@0: { sl@0: TInt ret = KErrNotReady; sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: ret = iInterfaceEAacPlusDecoder->GetInputSamplingFrequency(aInputSamplingFrequency); sl@0: } sl@0: return ret; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoGetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType) sl@0: { sl@0: TInt err = KErrNotReady; sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: err = iInterfaceEAacPlusDecoder->GetAudioObjectType(aAudioObjectType); sl@0: } sl@0: return err; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoGetNumOfChannels(TUint& aNumOfChannels) sl@0: { sl@0: TInt err = KErrNotReady; sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: err = iInterfaceEAacPlusDecoder->GetNumOfChannels(aNumOfChannels); sl@0: } sl@0: return err; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoGetSbr(TBool& aSbrEnabled) sl@0: { sl@0: TInt err = KErrNotReady; sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: err = iInterfaceEAacPlusDecoder->GetSbr(aSbrEnabled); sl@0: } sl@0: return err; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: TInt CMMFEAacPlusDecoderDeMux::DoGetDownSampledMode(TBool& aDsmEnabled) sl@0: { sl@0: TInt err = KErrNotReady; sl@0: if (iInterfaceEAacPlusDecoder) sl@0: { sl@0: err = iInterfaceEAacPlusDecoder->GetDownSampledMode(aDsmEnabled); sl@0: } sl@0: return err; sl@0: } sl@0: sl@0: /*****************************************************************************/ sl@0: sl@0: /*****************************************************************************/ sl@0: // sl@0: // ImplementationTable sl@0: // sl@0: sl@0: const TImplementationProxy ImplementationTable[] = sl@0: { sl@0: IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceEAacPlusDecoderMux, CMMFEAacPlusDecoderMux::NewL), sl@0: IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceEAacPlusDecoderDeMux, CMMFEAacPlusDecoderDeMux::NewL), sl@0: }; sl@0: sl@0: /*****************************************************************************/ sl@0: // sl@0: // ImplementationGroupProxy sl@0: // sl@0: // sl@0: sl@0: EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) sl@0: { sl@0: aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); sl@0: sl@0: return ImplementationTable; sl@0: } sl@0: sl@0: