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.
14 // Implementation of g729 decoder config custom interface pair
18 #ifndef G729DECODERCONFIGCI_H
19 #define G729DECODERCONFIGCI_H
22 #include <mmf/common/mmfipc.h>
23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
24 #include <mmf/common/mmfipcserver.h>
26 #include <mmf/server/mmfdevsoundcustominterface.h>
27 #include <mmf/server/mmfdevsoundcustomcommands.h>
28 #include <mmf/server/devsoundstandardcustominterfaces.h>
29 #include <mmf/plugin/mmfdevsoundcustominterface.hrh>
32 Enum to represent the method called by this custom interface
37 enum TMMFDevSoundCIG729DecoderIntfcCommands
39 EMMFDevSoundCIG729DecoderIntfcBadLsfNextBuffer
44 Implementation of the G729 Decoder config custom interface Mux
49 class CMMFG729DecoderIntfcMux : public CBase,
50 public MMMFDevSoundCustomInterfaceMuxPlugin,
51 public MG729DecoderIntfc
55 // from MMMFDevSoundCustomInterfaceMuxPlugin
57 Attempt to open the interface.
59 The UID of the interface to open.
60 @return One of the system wide error codes
62 virtual TInt OpenInterface(TUid aInterfaceId);
65 Equivalent to destructor. Called to destroy plugin.
67 virtual void Release();
71 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
73 The Uid returned by REComSession::CreateImplementationL() or similar
75 virtual void PassDestructorKey(TUid aDestructorKey);
78 Complete construction.
79 Pass additional values from the construction phase, used subsequently by the plugin.
81 The custom interface utility used by the plugin to communicate with the remote
82 server side DeMux plugin
83 @leave This method may leave with one of the system-wide error codes.
85 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
88 Return the custom interface
90 The UID of the required custom interface
91 @return The custom interface supported by this plugin
93 virtual TAny* CustomInterface(TUid aInterfaceId);
96 Instantiate a CI Mux class
97 @return The pointer to the new class, cast to the Mux plugin mixin
98 @leave This method may leave with one of the system-wide error codes.
100 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
102 // from MG729DecoderIntfc
103 //@see MG729DecoderIntfc
104 virtual TInt BadLsfNextBuffer();
107 CMMFG729DecoderIntfcMux();
108 ~CMMFG729DecoderIntfcMux();
113 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
118 Implementation of the G729 Decoder custom interface DeMux
123 class CMMFG729DecoderIntfcDeMux : public CBase,
124 public MMMFDevSoundCustomInterfaceDeMuxPlugin
128 Instantiate a CMMFG729DecoderIntfcDeMux class
129 @return A pointer to the new class cast to the DeMux plugin mixin
130 @leave This method may leave with one of the system-wide error codes.
132 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
135 Attempt to open the interface.
137 The UID of the interface to open.
138 @return A handle to the remote plugin
140 virtual TInt OpenInterface(TUid aInterfaceId);
143 Equivalent to destructor. Called to destroy plugin.
145 virtual void Release();
149 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
150 @param aDestructorKey
151 The Uid returned by REComSession::CreateImplementationL() or similar
153 virtual void PassDestructorKey(TUid aDestructorKey);
156 Set the target of the custom interface call
158 The DevSound to call the custom interface on.
160 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
163 Complete construction.
165 The DeMux utility to use
166 @leave This method may leave with one of the system-wide error codes.
168 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
171 Refresh the current custom interface connections
172 @leave This method may leave with one of the system-wide error codes.
174 virtual void RefreshL();
176 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
180 The UID of the requested interface
182 A package of data that can be supplied for initialisation
183 @return The result of the operation
184 @leave This method may leave with one of the system-wide error codes.
186 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
191 The handle of the slave plugin
192 @leave This method may leave with one of the system-wide error codes.
194 virtual void DoCloseSlaveL(TInt aHandle);
196 // original RMessage is supplied so that remote DeMux plugin can extract necessary details
197 // using DeMux utility
200 Relay the synchronous custom command onto the slave
202 The IPC message to be sent to the slave
203 @return the result of the operation
204 @leave This method may leave with one of the system-wide error codes.
206 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
209 Relay the synchronous custom command onto the slave and obtain a result
211 The IPC message to be sent to the slave
212 @return the result of the operation
213 @leave This method may leave with one of the system-wide error codes.
215 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
218 Relay an asynchronous command onto the slave
220 The IPC message to be sent to the slave
221 @leave This method may leave with one of the system-wide error codes.
223 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
226 Relay an asynchronous command onto the slave and obtain a result
228 The IPC message to be sent to the slave@param aMessage
229 @leave This method may leave with one of the system-wide error codes.
231 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
234 ~CMMFG729DecoderIntfcDeMux();
235 CMMFG729DecoderIntfcDeMux();
237 // from mirror MG729DecoderIntfc method.
238 TInt DoBadLsfNextBufferL();
241 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
242 MMMFDevSoundCustomInterfaceTarget* iTarget;
244 MG729DecoderIntfc* iInterfaceG729DecoderIntfc;