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 error concealment custom interface pair
18 #ifndef ERRORCONCEALMENTCI_H
19 #define ERRORCONCEALMENTCI_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 TMMFDevSoundCIErrorConcealmentIntfcCommands
39 EMMFDevSoundCIErrorConcealmentIntfcConcealErrorForNextBuffer,
40 EMMFDevSoundCIErrorConcealmentIntfcSetFrameMode,
41 EMMFDevSoundCIErrorConcealmentIntfcFrameModeRqrdForEC
46 Implementation of the error concealment custom interface Mux
51 class CMMFErrorConcealmentIntfcMux : public CBase,
52 public MMMFDevSoundCustomInterfaceMuxPlugin,
53 public MMMFErrorConcealmentIntfc
57 // from MMMFDevSoundCustomInterfaceMuxPlugin
59 Attempt to open the interface.
61 The UID of the interface to open.
62 @return One of the system wide error codes
64 virtual TInt OpenInterface(TUid aInterfaceId);
67 Equivalent to destructor. Called to destroy plugin.
69 virtual void Release();
73 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
75 The Uid returned by REComSession::CreateImplementationL() or similar
77 virtual void PassDestructorKey(TUid aDestructorKey);
80 Complete construction.
81 Pass additional values from the construction phase, used subsequently by the plugin.
83 The custom interface utility used by the plugin to communicate with the remote
84 server side DeMux plugin
85 @leave This method may leave with one of the system-wide error codes.
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
100 @leave This method may leave with one of the system-wide error codes.
102 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
104 // from MErrorConcealmentIntfc
105 //@see MErrorConcealmentIntfc
106 virtual TInt ConcealErrorForNextBuffer();
107 //@see MErrorConcealmentIntfc
108 virtual TInt SetFrameMode(TBool aFrameModeOn);
109 //@see MErrorConcealmentIntfc
110 virtual TInt FrameModeRqrdForEC(TBool& aFrameModeRqrd);
113 CMMFErrorConcealmentIntfcMux();
114 ~CMMFErrorConcealmentIntfcMux();
119 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
124 Implementation of the G729 Decoder custom interface DeMux
129 class CMMFErrorConcealmentIntfcDeMux : public CBase,
130 public MMMFDevSoundCustomInterfaceDeMuxPlugin
134 Instantiate a CMMFErrorConcealmentIntfcDeMux class
135 @return A pointer to the new class cast to the DeMux plugin mixin
136 @leave This method may leave with one of the system-wide error codes.
138 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
141 Attempt to open the interface.
143 The UID of the interface to open.
144 @return A handle to the remote plugin
146 virtual TInt OpenInterface(TUid aInterfaceId);
149 Equivalent to destructor. Called to destroy plugin.
151 virtual void Release();
155 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
156 @param aDestructorKey
157 The Uid returned by REComSession::CreateImplementationL() or similar
159 virtual void PassDestructorKey(TUid aDestructorKey);
162 Set the target of the custom interface call
164 The DevSound to call the custom interface on.
166 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
169 Complete construction.
171 The DeMux utility to use
172 @leave This method may leave with one of the system-wide error codes.
174 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
177 Refresh the current custom interface connections
178 @leave This method may leave with one of the system-wide error codes.
180 virtual void RefreshL();
182 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
186 The UID of the requested interface
188 A package of data that can be supplied for initialisation
189 @return The result of the operation
190 @leave This method may leave with one of the system-wide error codes.
192 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
197 The handle of the slave plugin
198 @leave This method may leave with one of the system-wide error codes.
200 virtual void DoCloseSlaveL(TInt aHandle);
202 // original RMessage is supplied so that remote DeMux plugin can extract necessary details
203 // using DeMux utility
206 Relay the synchronous custom command onto the slave
208 The IPC message to be sent to the slave
209 @return the result of the operation
210 @leave This method may leave with one of the system-wide error codes.
212 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
215 Relay the synchronous custom command onto the slave and obtain a result
217 The IPC message to be sent to the slave
218 @return the result of the operation
219 @leave This method may leave with one of the system-wide error codes.
221 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
224 Relay an asynchronous command onto the slave
226 The IPC message to be sent to the slave
227 @leave This method may leave with one of the system-wide error codes.
229 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
232 Relay an asynchronous command onto the slave and obtain a result
234 The IPC message to be sent to the slave@param aMessage
235 @leave This method may leave with one of the system-wide error codes.
237 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
240 ~CMMFErrorConcealmentIntfcDeMux();
241 CMMFErrorConcealmentIntfcDeMux();
243 // from mirror MErrorConcealmentIntfc method.
244 TInt DoConcealErrorForNextBufferL();
245 TInt DoSetFrameModeL(TBool aFrameModeOn);
246 TInt DoFrameModeRqrdForECL(TBool& aFrameModeRqrd);
249 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
250 MMMFDevSoundCustomInterfaceTarget* iTarget;
252 MMMFErrorConcealmentIntfc* iInterfaceErrorConcealmentIntfc;