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 encoder custom interface pair
18 #ifndef G729ENCODERCONFIGCI_H
19 #define G729ENCODERCONFIGCI_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 methods called by this custom interface
37 enum TMMFDevSoundCIG729EncoderIntfcCommands
39 EMMFDevSoundCIG729EncoderIntfcSetVadMode,
40 EMMFDevSoundCIG729EncoderIntfcGetVadMode
45 Implementation of the G729 Encoder custom interface Mux
50 class CMMFG729EncoderIntfcMux : public CBase,
51 public MMMFDevSoundCustomInterfaceMuxPlugin,
52 public MG729EncoderIntfc
56 // from MMMFDevSoundCustomInterfaceMuxPlugin
58 Attempt to open the interface.
60 The UID of the interface to open.
61 @return one of the system wide error codes
63 virtual TInt OpenInterface(TUid aInterfaceId);
66 Equivalent to destructor. Called to destroy plugin.
68 virtual void Release();
72 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
74 The Uid returned by REComSession::CreateImplementationL() or similar
76 virtual void PassDestructorKey(TUid aDestructorKey);
79 Complete construction.
80 Pass additional values from the construction phase, used subsequently by the plugin.
82 The custom interface utility used by the plugin to communicate with the remote
83 server side DeMux plugin
84 @leave This method may leave with one of the system-wide error codes.
86 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
89 Return the custom interface
91 The UID of the required custom interface
92 @return the custom interface supported by this plugin
94 virtual TAny* CustomInterface(TUid aInterfaceId);
97 Instantiate a CI Mux class
98 @return the pointer to the new class, cast to the Mux plugin mixin
99 @leave This method may leave with one of the system-wide error codes.
101 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
103 // from MG729EncoderIntfc
104 //@see MG729EncoderIntfc
105 virtual TInt SetVadMode(TBool aVadModeOn);
106 //@see MG729EncoderIntfc
107 virtual TInt GetVadMode(TBool& aVadModeOn);
110 CMMFG729EncoderIntfcMux();
111 ~CMMFG729EncoderIntfcMux();
116 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
121 Implementation of the G729 Encoder custom interface DeMux
126 class CMMFG729EncoderIntfcDeMux : public CBase,
127 public MMMFDevSoundCustomInterfaceDeMuxPlugin
131 Instantiate a CMMFG729EncoderIntfcDeMux class
132 @return a pointer to the new class cast to the DeMux plugin mixin
133 @leave This method may leave with one of the system-wide error codes.
135 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
138 Attempt to open the interface.
140 The UID of the interface to open.
141 @return a handle to the remote plugin
143 virtual TInt OpenInterface(TUid aInterfaceId);
146 Equivalent to destructor. Called to destroy plugin.
148 virtual void Release();
152 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
153 @param aDestructorKey
154 The Uid returned by REComSession::CreateImplementationL() or similar
156 virtual void PassDestructorKey(TUid aDestructorKey);
159 Set the target of the custom interface call
161 The DevSound to call the custom interface on.
163 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
166 Complete construction.
168 The DeMux utility to use
169 @leave This method may leave with one of the system-wide error codes.
171 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
174 Refresh the current custom interface connections
175 @leave This method may leave with one of the system-wide error codes.
177 virtual void RefreshL();
179 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
183 The UID of the requested interface
185 A package of data that can be supplied for initialisation
186 @return the result of the operation
187 @leave This method may leave with one of the system-wide error codes.
189 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
194 The handle of the slave plugin
195 @leave This method may leave with one of the system-wide error codes.
197 virtual void DoCloseSlaveL(TInt aHandle);
199 // original RMessage is supplied so that remote DeMux plugin can extract necessary details
200 // using DeMux utility
203 Relay the synchronous custom command onto the slave
205 The IPC message to be sent to the slave
206 @return the result of the operation
207 @leave This method may leave with one of the system-wide error codes.
209 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
212 Relay the synchronous custom command onto the slave and obtain a result
214 The IPC message to be sent to the slave
215 @return the result of the operation
216 @leave This method may leave with one of the system-wide error codes.
218 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
221 Relay an asynchronous command onto the slave
223 The IPC message to be sent to the slave
224 @leave This method may leave with one of the system-wide error codes.
226 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
229 Relay an asynchronous command onto the slave and obtain a result
231 The IPC message to be sent to the slave@param aMessage
232 @leave This method may leave with one of the system-wide error codes.
234 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
237 ~CMMFG729EncoderIntfcDeMux();
238 CMMFG729EncoderIntfcDeMux();
240 // from mirror MG729EncoderIntfc method.
241 TInt DoSetVadModeL(TBool aVadModeOn);
242 TInt DoGetVadModeL(TBool& aVadModeOn);
245 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
246 MMMFDevSoundCustomInterfaceTarget* iTarget;
248 MG729EncoderIntfc* iInterfaceG729EncoderIntfc;