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 Ilbc encoder config custom interface pair
18 #ifndef ILBCENCODERCONFIGCI_H
19 #define ILBCENCODERCONFIGCI_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 TMMFDevSoundCIIlbcEncoderIntfcCommands
39 EMMFDevSoundCIIlbcEncoderIntfcSetEncoderMode,
40 EMMFDevSoundCIIlbcEncoderIntfcGetEncoderMode,
41 EMMFDevSoundCIIlbcEncoderIntfcSetVadMode,
42 EMMFDevSoundCIIlbcEncoderIntfcGetVadMode
47 Implementation of the Ilbc encoder config custom interface Mux
52 class CMMFIlbcEncoderIntfcMux : public CBase,
53 public MMMFDevSoundCustomInterfaceMuxPlugin,
54 public MIlbcEncoderIntfc
58 // from MMMFDevSoundCustomInterfaceMuxPlugin
60 Attempt to open the interface.
62 The UID of the interface to open.
63 @return one of the system wide error codes
65 virtual TInt OpenInterface(TUid aInterfaceId);
68 Equivalent to destructor. Called to destroy plugin.
70 virtual void Release();
74 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
76 The Uid returned by REComSession::CreateImplementationL() or similar
78 virtual void PassDestructorKey(TUid aDestructorKey);
81 Complete construction.
82 Pass additional values from the construction phase, used subsequently by the plugin.
84 The custom interface utility used by the plugin to communicate with the remote
85 server side DeMux plugin
87 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
90 Return the custom interface
92 The UID of the required custom interface
93 @return the custom interface supported by this plugin
95 virtual TAny* CustomInterface(TUid aInterfaceId);
98 Instantiate a CI Mux class
99 @return the pointer to the new class, cast to the Mux plugin mixin
101 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
103 // from MIlbcEncoderIntfc
104 //@see MIlbcEncoderIntfc
105 virtual TInt SetEncoderMode(TEncodeMode aEncodeMode);
106 //@see MIlbcEncoderIntfc
107 virtual TInt GetEncoderMode(TEncodeMode& aEncodeMode);
108 //@see MIlbcEncoderIntfc
109 virtual TInt SetVadMode(TBool aVadModeOn);
110 //@see MIlbcEncoderIntfc
111 virtual TInt GetVadMode(TBool& aVadModeOn);
114 CMMFIlbcEncoderIntfcMux();
115 ~CMMFIlbcEncoderIntfcMux();
120 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
125 Implementation of the Ilbc Decoder config custom interface DeMux
130 class CMMFIlbcEncoderIntfcDeMux : public CBase,
131 public MMMFDevSoundCustomInterfaceDeMuxPlugin
135 Instantiate a CMMFIlbcEncoderIntfcDeMux class
136 @return A pointer to the new class cast to the DeMux plugin mixin
137 @leave This method may leave with one of the system-wide error codes.
139 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
142 Attempt to open the interface.
144 The UID of the interface to open.
145 @return A handle to the remote plugin
147 virtual TInt OpenInterface(TUid aInterfaceId);
150 Equivalent to destructor. Called to destroy plugin.
152 virtual void Release();
156 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
157 @param aDestructorKey
158 The Uid returned by REComSession::CreateImplementationL() or similar
160 virtual void PassDestructorKey(TUid aDestructorKey);
163 Set the target of the custom interface call
165 The DevSound to call the custom interface on.
167 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
170 Complete construction.
172 The DeMux utility to use
173 @leave This method may leave with one of the system-wide error codes.
175 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
178 Refresh the current custom interface connections
179 @leave This method may leave with one of the system-wide error codes.
181 virtual void RefreshL();
183 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
187 The UID of the requested interface
189 A package of data that can be supplied for initialisation
190 @return The result of the operation
191 @leave This method may leave with one of the system-wide error codes.
193 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
198 The handle of the slave plugin
199 @leave This method may leave with one of the system-wide error codes.
201 virtual void DoCloseSlaveL(TInt aHandle);
204 Relay the synchronous custom command onto the slave
206 The IPC message to be sent to the slave
207 @return the result of the operation
208 @leave This method may leave with one of the system-wide error codes.
210 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
213 Relay the synchronous custom command onto the slave and obtain a result
215 The IPC message to be sent to the slave
216 @return the result of the operation
217 @leave This method may leave with one of the system-wide error codes.
219 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
222 Relay an asynchronous command onto the slave
224 The IPC message to be sent to the slave
225 @leave This method may leave with one of the system-wide error codes.
227 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
230 Relay an asynchronous command onto the slave and obtain a result
232 The IPC message to be sent to the slave@param aMessage
233 @leave This method may leave with one of the system-wide error codes.
235 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
238 ~CMMFIlbcEncoderIntfcDeMux();
239 CMMFIlbcEncoderIntfcDeMux();
241 // from mirror MIlbcEncoderIntfc method.
242 TInt DoSetEncoderModeL(MIlbcEncoderIntfc::TEncodeMode aEncodeMode);
243 TInt DoGetEncoderModeL(MIlbcEncoderIntfc::TEncodeMode& aEncodeMode);
244 TInt DoSetVadModeL(TBool aVadModeOn);
245 TInt DoGetVadModeL(TBool& aVadModeOn);
248 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
249 MMMFDevSoundCustomInterfaceTarget* iTarget;
251 MIlbcEncoderIntfc* iInterfaceIlbcEncoderIntfc;