First public contribution.
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 #ifndef EAACPLUSDECODERCI_H
17 #define EAACPLUSDECODERCI_H
20 #include <mmf/common/mmfipc.h>
21 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
22 #include <mmf/common/mmfipcserver.h>
24 #include <mmf/server/mmfdevsoundcustominterface.h>
25 #include <mmf/server/mmfdevsoundcustomcommands.h>
26 #include <mmf/server/devsoundstandardcustominterfaces.h>
27 #include <mmf/plugin/mmfdevsoundcustominterface.hrh>
30 Enum to represent the methods called by this custom interface
35 enum TMMFDevSoundCIEAacPlusDecoderCommands
37 EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency = 0,
38 EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType,
39 EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels,
40 EMMFDevSoundCIEAacPlusDecoderSetSbr,
41 EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode,
42 EMMFDevSoundCIEAacPlusDecoderApplyConfig,
43 EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency,
44 EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType,
45 EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels,
46 EMMFDevSoundCIEAacPlusDecoderGetSbr,
47 EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode
52 CMMFEAacPlusDecoderMux - implementation of the EAAC+ Decoder custom interface pair
57 class CMMFEAacPlusDecoderMux : public CBase,
58 public MMMFDevSoundCustomInterfaceMuxPlugin,
59 public MEAacPlusDecoderIntfc
63 // from MMMFDevSoundCustomInterfaceMuxPlugin
65 Attempt to open the interface.
67 The UID of the interface to open.
68 @return One of the system wide error codes
70 virtual TInt OpenInterface(TUid aInterfaceId);
73 Equivalent to destructor. Called to destroy plugin.
75 virtual void Release();
79 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
81 The Uid returned by REComSession::CreateImplementationL() or similar
83 virtual void PassDestructorKey(TUid aDestructorKey);
86 Complete construction.
87 Pass additional values from the construction phase, used subsequently by the plugin.
89 The custom interface utility used by the plugin to communicate with the remote
90 server side DeMux plugin
91 @leave This method may leave with one of the system-wide error codes.
93 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
96 Return the custom interface
98 The UID of the required custom interface
99 @return The custom interface supported by this plugin
101 virtual TAny* CustomInterface(TUid aInterfaceId);
104 Instantiate a CI Mux class
105 @leave This method may leave with one of the system-wide error codes.
106 @return The pointer to the new class, cast to the Mux plugin mixin
108 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
110 // from MEAacPlusDecoderIntfc
112 @see MEAacPlusDecoderIntfc
114 virtual void SetInputSamplingFrequency(TUint aInputSamplingFrequency);
117 @see MEAacPlusDecoderIntfc
119 virtual void SetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType);
122 @see MEAacPlusDecoderIntfc
124 virtual void SetNumOfChannels(TUint aNumOfChannels);
127 @see MEAacPlusDecoderIntfc
129 virtual void SetSbr(TBool aSbrEnabled);
132 @see MEAacPlusDecoderIntfc
134 virtual void SetDownSampledMode(TBool aDsmEnabled);
137 @see MEAacPlusDecoderIntfc
139 virtual TInt ApplyConfig();
142 @see MEAacPlusDecoderIntfc
144 virtual TInt GetInputSamplingFrequency ( TUint& aInputSamplingFrequency );
147 @see MEAacPlusDecoderIntfc
149 virtual TInt GetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType);
152 @see MEAacPlusDecoderIntfc
154 virtual TInt GetNumOfChannels ( TUint& aNumOfChannels );
157 @see MEAacPlusDecoderIntfc
159 virtual TInt GetSbr (TBool& aSbrEnabled);
162 @see MEAacPlusDecoderIntfc
164 virtual TInt GetDownSampledMode (TBool& aDsmEnabled);
167 CMMFEAacPlusDecoderMux();
168 ~CMMFEAacPlusDecoderMux();
173 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
177 CMMFEAacPlusDecoderDeMux - DeMux side of pair
182 class CMMFEAacPlusDecoderDeMux : public CBase, public MMMFDevSoundCustomInterfaceDeMuxPlugin
186 Instantiate a CMMFEAacPlusDecoderDeMux class
187 @leave This method may leave with one of the system-wide error codes.
188 @return A pointer to the new class cast to the DeMux plugin mixin
190 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
193 Attempt to open the interface.
195 The UID of the interface to open.
196 @return A handle to the remote plugin
198 virtual TInt OpenInterface(TUid aInterfaceId);
201 Equivalent to destructor. Called to destroy plugin.
203 virtual void Release();
206 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
207 @param aDestructorKey
208 The Uid returned by REComSession::CreateImplementationL() or similar
210 virtual void PassDestructorKey(TUid aDestructorKey);
213 Set the target of the custom interface call
215 The DevSound to call the custom interface on.
217 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
220 Complete construction.
222 The DeMux utility to use
223 @leave This method may leave with one of the system-wide error codes.
225 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
228 Refresh the current custom interface connections
229 @leave This method may leave with one of the system-wide error codes.
231 virtual void RefreshL();
233 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
237 The UID of the requested interface
239 A package of data that can be supplied for initialisation
240 @leave This method may leave with one of the system-wide error codes.
241 @return The result of the operation
243 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
248 The handle of the slave plugin
249 @leave This method may leave with one of the system-wide error codes.
251 virtual void DoCloseSlaveL(TInt aHandle);
253 // original RMessage is supplied so that remote demux plugin can extract necessary details
254 // using DeMux utility
257 Relay the synchronous custom command onto the slave
259 The IPC message to be sent to the slave
260 @leave This method may leave with one of the system-wide error codes.
261 @return The result of the operation
263 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
266 Relay the synchronous custom command onto the slave and obtain a result
268 The IPC message to be sent to the slave
269 @leave This method may leave with one of the system-wide error codes.
270 @return The result of the operation
272 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
275 Relay an asynchronous command onto the slave
277 The IPC message to be sent to the slave
278 @leave This method may leave with one of the system-wide error codes.
280 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
283 Relay an asynchronous command onto the slave and obtain a result
285 The IPC message to be sent to the slave@param aMessage
286 @leave This method may leave with one of the system-wide error codes.
288 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
291 ~CMMFEAacPlusDecoderDeMux();
292 CMMFEAacPlusDecoderDeMux();
294 // mirrors MEAacPlusDecoderIntfc methods.
295 void DoSetInputSamplingFrequency(TUint aInputSamplingFrequency);
296 void DoSetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType);
297 void DoSetNumOfChannels(TUint aNumOfChannels);
298 void DoSetSbr(TBool aSbrEnabled);
299 void DoSetDownSampledMode(TBool aDsmEnabled);
300 TInt DoApplyConfig();
301 TInt DoGetInputSamplingFrequency(TUint& aInputSamplingFrequency);
302 TInt DoGetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType);
303 TInt DoGetNumOfChannels(TUint& aNumOfChannels);
304 TInt DoGetSbr(TBool& aSbrEnabled);
305 TInt DoGetDownSampledMode(TBool& aDsmEnabled);
308 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
309 MMMFDevSoundCustomInterfaceTarget* iTarget;
311 MEAacPlusDecoderIntfc* iInterfaceEAacPlusDecoder;