os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/g729decoderconfigci.cpp
Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <ecom/implementationproxy.h>
17 #include <ecom/implementationproxy.h>
18 #include <ecom/ecom.h>
21 #include "g729decoderconfigci.h"
26 TInt CMMFG729DecoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceG729DecoderIntfcDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFG729DecoderIntfcMux::Release()
45 // close the slave device if it exists
46 if (iRemoteHandle > 0)
48 // we assume the slave is closed correctly
49 iUtility->CloseSlave(iRemoteHandle);
55 // tell ECom to destroy us
56 REComSession::DestroyedImplementation(key);
60 void CMMFG729DecoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFG729DecoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFG729DecoderIntfcMux::NewL()
76 CMMFG729DecoderIntfcMux* self = new (ELeave) CMMFG729DecoderIntfcMux;
81 TAny* CMMFG729DecoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
83 MG729DecoderIntfc* interface = this;
88 CMMFG729DecoderIntfcMux::CMMFG729DecoderIntfcMux() :
94 CMMFG729DecoderIntfcMux::~CMMFG729DecoderIntfcMux()
99 // from MG729DecoderIntfc
100 TInt CMMFG729DecoderIntfcMux::BadLsfNextBuffer()
102 TInt result = KErrBadHandle;
104 if (iRemoteHandle > 0)
106 // any return code other than zero is an error
107 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
108 EMMFDevSoundCIG729DecoderIntfcBadLsfNextBuffer,
119 TInt CMMFG729DecoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
125 void CMMFG729DecoderIntfcDeMux::Release()
131 // tell ECom to destroy us
132 REComSession::DestroyedImplementation(key);
136 void CMMFG729DecoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
138 // store the destructor key
139 iKey = aDestructorKey;
143 void CMMFG729DecoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
149 void CMMFG729DecoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
151 // store a pointer to the utility
152 iUtility = aCustomUtility;
156 void CMMFG729DecoderIntfcDeMux::RefreshL()
158 // refetch the G729 decoder intfc custom interface if we already have a target
161 iInterfaceG729DecoderIntfc = static_cast <MG729DecoderIntfc*> (iTarget->CustomInterface(KUidG729DecoderIntfc));
163 if (!iInterfaceG729DecoderIntfc)
165 iInterfaceG729DecoderIntfc = NULL;
166 User::Leave(KErrNotSupported);
172 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFG729DecoderIntfcDeMux::NewL()
174 CMMFG729DecoderIntfcDeMux* self = new (ELeave) CMMFG729DecoderIntfcDeMux;
179 CMMFG729DecoderIntfcDeMux::CMMFG729DecoderIntfcDeMux()
184 CMMFG729DecoderIntfcDeMux::~CMMFG729DecoderIntfcDeMux()
189 TInt CMMFG729DecoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
191 // fetch the G729 decoder intfc Hw Device custom interface
192 iInterfaceG729DecoderIntfc = static_cast<MG729DecoderIntfc*> (iTarget->CustomInterface(KUidG729DecoderIntfc));
194 if (!iInterfaceG729DecoderIntfc)
196 iInterfaceG729DecoderIntfc = NULL;
197 User::Leave(KErrNotSupported);
204 void CMMFG729DecoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
210 // original RMessage is supplied so that remote demux plugin can extract necessary details
211 // using DeMux utility
212 TInt CMMFG729DecoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
214 TMMFDevSoundCIMessageData data;
215 TInt result = KErrGeneral;
218 iUtility->GetSyncMessageDataL(aMessage, data);
220 switch (data.iCommand)
222 case EMMFDevSoundCIG729DecoderIntfcBadLsfNextBuffer:
224 result = DoBadLsfNextBufferL();
229 User::Leave(KErrNotSupported);
237 TInt CMMFG729DecoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
243 void CMMFG729DecoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
245 // not used in this interface
249 void CMMFG729DecoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
251 // not used in this interface
255 TInt CMMFG729DecoderIntfcDeMux::DoBadLsfNextBufferL()
257 TInt result = KErrNotFound;
259 if (iInterfaceG729DecoderIntfc)
261 result = iInterfaceG729DecoderIntfc->BadLsfNextBuffer();
269 // ImplementationTable
272 const TImplementationProxy ImplementationTable[] =
274 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG729DecoderIntfcMux, CMMFG729DecoderIntfcMux::NewL),
275 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG729DecoderIntfcDeMux, CMMFG729DecoderIntfcDeMux::NewL),
279 // ImplementationGroupProxy
281 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
283 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
285 return ImplementationTable;