sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef SBCENCODERCI_H
|
sl@0
|
17 |
#define SBCENCODERCI_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <mmf/common/mmfipc.h>
|
sl@0
|
21 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
22 |
#include <mmf/common/mmfipcserver.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
#include <mmf/server/mmfdevsoundcustominterface.h>
|
sl@0
|
25 |
#include <mmf/server/mmfdevsoundcustomcommands.h>
|
sl@0
|
26 |
#include <mmf/server/devsoundstandardcustominterfaces.h>
|
sl@0
|
27 |
#include <mmf/plugin/mmfdevsoundcustominterface.hrh>
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Enum to represent the methods called by this custom interface
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
@prototype
|
sl@0
|
33 |
@file
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
enum TMMFDevSoundCISbcEncoderCommands
|
sl@0
|
36 |
{
|
sl@0
|
37 |
EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount = 0,
|
sl@0
|
38 |
EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray,
|
sl@0
|
39 |
EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount,
|
sl@0
|
40 |
EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray,
|
sl@0
|
41 |
EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount,
|
sl@0
|
42 |
EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray,
|
sl@0
|
43 |
EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount,
|
sl@0
|
44 |
EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray,
|
sl@0
|
45 |
EMMFDevSoundCISbcEncoderGetSupportedBlocksCount,
|
sl@0
|
46 |
EMMFDevSoundCISbcEncoderGetSupportedBlocksArray,
|
sl@0
|
47 |
EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange,
|
sl@0
|
48 |
EMMFDevSoundCISbcEncoderSetSamplingFrequency,
|
sl@0
|
49 |
EMMFDevSoundCISbcEncoderSetChannelMode,
|
sl@0
|
50 |
EMMFDevSoundCISbcEncoderSetSubbands,
|
sl@0
|
51 |
EMMFDevSoundCISbcEncoderSetBlocks,
|
sl@0
|
52 |
EMMFDevSoundCISbcEncoderSetAllocationMethod,
|
sl@0
|
53 |
EMMFDevSoundCISbcEncoderSetBitpoolSize,
|
sl@0
|
54 |
EMMFDevSoundCISbcEncoderApplyConfig,
|
sl@0
|
55 |
EMMFDevSoundCISbcEncoderGetSamplingFrequency,
|
sl@0
|
56 |
EMMFDevSoundCISbcEncoderGetChannelMode,
|
sl@0
|
57 |
EMMFDevSoundCISbcEncoderGetSubbands,
|
sl@0
|
58 |
EMMFDevSoundCISbcEncoderGetBlocks,
|
sl@0
|
59 |
EMMFDevSoundCISbcEncoderGetAllocationMethod,
|
sl@0
|
60 |
EMMFDevSoundCISbcEncoderGetBitpoolSize
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
CMMFSbcEncoderMux implementation of the SBC encoder custom interface pair
|
sl@0
|
66 |
@internalComponent
|
sl@0
|
67 |
@prototype
|
sl@0
|
68 |
@file
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
class CMMFSbcEncoderMux : public CBase,
|
sl@0
|
71 |
public MMMFDevSoundCustomInterfaceMuxPlugin,
|
sl@0
|
72 |
public MSbcEncoderIntfc
|
sl@0
|
73 |
{
|
sl@0
|
74 |
public:
|
sl@0
|
75 |
|
sl@0
|
76 |
// from MMMFDevSoundCustomInterfaceMuxPlugin
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Attempt to open the interface.
|
sl@0
|
79 |
@param aInterfaceId
|
sl@0
|
80 |
The UID of the interface to open.
|
sl@0
|
81 |
@return One of the system wide error codes
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
virtual TInt OpenInterface(TUid aInterfaceId);
|
sl@0
|
84 |
|
sl@0
|
85 |
/**
|
sl@0
|
86 |
Equivalent to destructor. Called to destroy plugin.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
virtual void Release();
|
sl@0
|
89 |
|
sl@0
|
90 |
/**
|
sl@0
|
91 |
Pass destructor key.
|
sl@0
|
92 |
Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
|
sl@0
|
93 |
@param aDestructorKey
|
sl@0
|
94 |
The Uid returned by REComSession::CreateImplementationL() or similar
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
virtual void PassDestructorKey(TUid aDestructorKey);
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
Complete construction.
|
sl@0
|
100 |
Pass additional values from the construction phase, used subsequently by the plugin.
|
sl@0
|
101 |
@param aCustomUtility
|
sl@0
|
102 |
The custom interface utility used by the plugin to communicate with the remote
|
sl@0
|
103 |
server side DeMux plugin
|
sl@0
|
104 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
Return the custom interface
|
sl@0
|
110 |
@param aInterfaceId
|
sl@0
|
111 |
The UID of the required custom interface
|
sl@0
|
112 |
@return The custom interface supported by this plugin
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
virtual TAny* CustomInterface(TUid aInterfaceId);
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
Instantiate a CI Mux class
|
sl@0
|
118 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
119 |
@return The pointer to the new class, cast to the Mux plugin mixin
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
|
sl@0
|
122 |
|
sl@0
|
123 |
// from MSbcEncoderIntfc
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
@see MSbcEncoderIntfc
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
virtual TInt GetSupportedSamplingFrequencies(RArray<TUint>& aSamplingFrequencies);
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
@see MSbcEncoderIntfc
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
virtual TInt GetSupportedChannelModes(RArray<TSbcChannelMode>& aChannelModes);
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
@see MSbcEncoderIntfc
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
virtual TInt GetSupportedNumOfSubbands(RArray<TUint>& aNumOfSubbands);
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
@see MSbcEncoderIntfc
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
virtual TInt GetSupportedAllocationMethods(RArray<TSbcAllocationMethod>& aAllocationMethods);
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
@see MSbcEncoderIntfc
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
virtual TInt GetSupportedNumOfBlocks(RArray<TUint>& aNumOfBlocks);
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
@see MSbcEncoderIntfc
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
virtual TInt GetSupportedBitpoolRange(TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize);
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
@see MSbcEncoderIntfc
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
virtual void SetSamplingFrequency(TUint aSamplingFrequency);
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
@see MSbcEncoderIntfc
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
virtual void SetChannelMode(TSbcChannelMode aChannelMode);
|
sl@0
|
163 |
|
sl@0
|
164 |
/**
|
sl@0
|
165 |
@see MSbcEncoderIntfc
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
virtual void SetNumOfSubbands(TUint aNumOfSubbands);
|
sl@0
|
168 |
|
sl@0
|
169 |
/**
|
sl@0
|
170 |
@see MSbcEncoderIntfc
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
virtual void SetNumOfBlocks(TUint aNumOfBlocks);
|
sl@0
|
173 |
|
sl@0
|
174 |
/**
|
sl@0
|
175 |
@see MSbcEncoderIntfc
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
virtual void SetAllocationMethod(TSbcAllocationMethod aAllocationMethod);
|
sl@0
|
178 |
|
sl@0
|
179 |
/**
|
sl@0
|
180 |
@see MSbcEncoderIntfc
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
virtual void SetBitpoolSize(TUint aBitpoolSize);
|
sl@0
|
183 |
|
sl@0
|
184 |
/**
|
sl@0
|
185 |
@see MSbcEncoderIntfc
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
virtual TInt ApplyConfig();
|
sl@0
|
188 |
|
sl@0
|
189 |
/**
|
sl@0
|
190 |
@see MSbcEncoderIntfc
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
virtual TInt GetSamplingFrequency(TUint& aSamplingFrequency);
|
sl@0
|
193 |
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
@see MSbcEncoderIntfc
|
sl@0
|
196 |
*/
|
sl@0
|
197 |
virtual TInt GetChannelMode(TSbcChannelMode& aChannelMode);
|
sl@0
|
198 |
|
sl@0
|
199 |
/**
|
sl@0
|
200 |
@see MSbcEncoderIntfc
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
virtual TInt GetNumOfSubbands(TUint& aNumOfSubbands);
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
@see MSbcEncoderIntfc
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
virtual TInt GetNumOfBlocks(TUint& aNumOfBlocks);
|
sl@0
|
208 |
|
sl@0
|
209 |
/**
|
sl@0
|
210 |
@see MSbcEncoderIntfc
|
sl@0
|
211 |
*/
|
sl@0
|
212 |
virtual TInt GetAllocationMethod(TSbcAllocationMethod& aAllocationMethod);
|
sl@0
|
213 |
|
sl@0
|
214 |
/**
|
sl@0
|
215 |
@see MSbcEncoderIntfc
|
sl@0
|
216 |
*/
|
sl@0
|
217 |
virtual TInt GetBitpoolSize(TUint& aBitpoolSize);
|
sl@0
|
218 |
|
sl@0
|
219 |
protected:
|
sl@0
|
220 |
CMMFSbcEncoderMux();
|
sl@0
|
221 |
~CMMFSbcEncoderMux();
|
sl@0
|
222 |
|
sl@0
|
223 |
private:
|
sl@0
|
224 |
void DoGetTUintArrayL(RArray<TUint>& aArray, TInt aCount, TMMFDevSoundCISbcEncoderCommands aCommand);
|
sl@0
|
225 |
void DoGetChannelModesArrayL(RArray<TSbcChannelMode>& aChannelModes, TInt aCount);
|
sl@0
|
226 |
void DoGetAllocMethodsArrayL(RArray<TSbcAllocationMethod>& aAllocationMethods, TInt aCount);
|
sl@0
|
227 |
void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage);
|
sl@0
|
228 |
|
sl@0
|
229 |
protected:
|
sl@0
|
230 |
TUid iDestructorKey;
|
sl@0
|
231 |
TInt iRemoteHandle;
|
sl@0
|
232 |
MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
|
sl@0
|
233 |
};
|
sl@0
|
234 |
|
sl@0
|
235 |
/**
|
sl@0
|
236 |
CMMFSbcEncoderDeMux - DeMux side of pair
|
sl@0
|
237 |
@internalComponent
|
sl@0
|
238 |
@prototype
|
sl@0
|
239 |
@file
|
sl@0
|
240 |
*/
|
sl@0
|
241 |
class CMMFSbcEncoderDeMux : public CBase,
|
sl@0
|
242 |
public MMMFDevSoundCustomInterfaceDeMuxPlugin
|
sl@0
|
243 |
{
|
sl@0
|
244 |
public:
|
sl@0
|
245 |
/**
|
sl@0
|
246 |
Instantiate a CMMFSbcEncoderDeMux class
|
sl@0
|
247 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
248 |
@return A pointer to the new class cast to the DeMux plugin mixin
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
|
sl@0
|
251 |
|
sl@0
|
252 |
/**
|
sl@0
|
253 |
Attempt to open the interface.
|
sl@0
|
254 |
@param aInterfaceId
|
sl@0
|
255 |
The UID of the interface to open.
|
sl@0
|
256 |
@return a handle to the remote plugin
|
sl@0
|
257 |
*/
|
sl@0
|
258 |
virtual TInt OpenInterface(TUid aInterfaceId);
|
sl@0
|
259 |
|
sl@0
|
260 |
/**
|
sl@0
|
261 |
Equivalent to destructor. Called to destroy plugin.
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
virtual void Release();
|
sl@0
|
264 |
|
sl@0
|
265 |
/**
|
sl@0
|
266 |
Pass destructor key.
|
sl@0
|
267 |
Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
|
sl@0
|
268 |
@param aDestructorKey
|
sl@0
|
269 |
The Uid returned by REComSession::CreateImplementationL() or similar
|
sl@0
|
270 |
*/
|
sl@0
|
271 |
virtual void PassDestructorKey(TUid aDestructorKey);
|
sl@0
|
272 |
|
sl@0
|
273 |
/**
|
sl@0
|
274 |
Set the target of the custom interface call
|
sl@0
|
275 |
@param aTarget
|
sl@0
|
276 |
The DevSound to call the custom interface on.
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
|
sl@0
|
279 |
|
sl@0
|
280 |
/**
|
sl@0
|
281 |
Complete construction.
|
sl@0
|
282 |
@param aUtility
|
sl@0
|
283 |
The DeMux utility to use
|
sl@0
|
284 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
285 |
*/
|
sl@0
|
286 |
virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
|
sl@0
|
287 |
|
sl@0
|
288 |
/**
|
sl@0
|
289 |
Refresh the current custom interface connections
|
sl@0
|
290 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
291 |
*/
|
sl@0
|
292 |
virtual void RefreshL();
|
sl@0
|
293 |
|
sl@0
|
294 |
// from MMMFDevSoundCustomInterfaceDeMuxPlugin
|
sl@0
|
295 |
/**
|
sl@0
|
296 |
Open the slave
|
sl@0
|
297 |
@param aInterface
|
sl@0
|
298 |
The UID of the requested interface
|
sl@0
|
299 |
@param aPackageBuf
|
sl@0
|
300 |
A package of data that can be supplied for initialisation
|
sl@0
|
301 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
302 |
@return The result of the operation
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
|
sl@0
|
305 |
|
sl@0
|
306 |
/**
|
sl@0
|
307 |
Close the slave
|
sl@0
|
308 |
@param aHandle
|
sl@0
|
309 |
The handle of the slave plugin
|
sl@0
|
310 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
311 |
*/
|
sl@0
|
312 |
virtual void DoCloseSlaveL(TInt aHandle);
|
sl@0
|
313 |
|
sl@0
|
314 |
// original RMessage is supplied so that remote demux plugin can extract necessary details
|
sl@0
|
315 |
// using DeMux utility
|
sl@0
|
316 |
|
sl@0
|
317 |
/**
|
sl@0
|
318 |
Relay the synchronous custom command onto the slave
|
sl@0
|
319 |
@param aMessage
|
sl@0
|
320 |
The IPC message to be sent to the slave
|
sl@0
|
321 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
322 |
@return The result of the operation
|
sl@0
|
323 |
*/
|
sl@0
|
324 |
virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
|
sl@0
|
325 |
|
sl@0
|
326 |
/**
|
sl@0
|
327 |
Relay the synchronous custom command onto the slave and obtain a result
|
sl@0
|
328 |
@param aMessage
|
sl@0
|
329 |
The IPC message to be sent to the slave
|
sl@0
|
330 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
331 |
@return The result of the operation
|
sl@0
|
332 |
*/
|
sl@0
|
333 |
virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
|
sl@0
|
334 |
|
sl@0
|
335 |
/**
|
sl@0
|
336 |
Relay an asynchronous command onto the slave
|
sl@0
|
337 |
@param aMessage
|
sl@0
|
338 |
The IPC message to be sent to the slave
|
sl@0
|
339 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
340 |
*/
|
sl@0
|
341 |
virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
|
sl@0
|
342 |
|
sl@0
|
343 |
/**
|
sl@0
|
344 |
Relay an asynchronous command onto the slave and obtain a result
|
sl@0
|
345 |
@param aMessage
|
sl@0
|
346 |
The IPC message to be sent to the slave@param aMessage
|
sl@0
|
347 |
@leave This method may leave with one of the system-wide error codes.
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
|
sl@0
|
350 |
|
sl@0
|
351 |
protected:
|
sl@0
|
352 |
~CMMFSbcEncoderDeMux();
|
sl@0
|
353 |
CMMFSbcEncoderDeMux();
|
sl@0
|
354 |
|
sl@0
|
355 |
// mirrors MSbcEncoderIntfc methods.
|
sl@0
|
356 |
TInt DoGetSupportedSamplingFrequencies (RArray<TUint>& aSamplingFrequencies );
|
sl@0
|
357 |
TInt DoGetSupportedChannelModes (RArray<MSbcEncoderIntfc::TSbcChannelMode>& aChannelModes );
|
sl@0
|
358 |
TInt DoGetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands );
|
sl@0
|
359 |
TInt DoGetSupportedAllocationMethods (RArray<MSbcEncoderIntfc::TSbcAllocationMethod>& aAllocationMethods );
|
sl@0
|
360 |
TInt DoGetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks );
|
sl@0
|
361 |
TInt DoGetSupportedBitpoolRange (TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize);
|
sl@0
|
362 |
void DoSetSamplingFrequency (TUint aSamplingFrequency );
|
sl@0
|
363 |
void DoSetChannelMode (MSbcEncoderIntfc::TSbcChannelMode aChannelMode );
|
sl@0
|
364 |
void DoSetNumOfSubbands (TUint aNumOfSubbands );
|
sl@0
|
365 |
void DoSetNumOfBlocks (TUint aNumOfBlocks );
|
sl@0
|
366 |
void DoSetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod aAllocationMethod );
|
sl@0
|
367 |
void DoSetBitpoolSize (TUint aBitpoolSize );
|
sl@0
|
368 |
TInt DoApplyConfig();
|
sl@0
|
369 |
TInt DoGetSamplingFrequency (TUint& aSamplingFrequency );
|
sl@0
|
370 |
TInt DoGetChannelMode (MSbcEncoderIntfc::TSbcChannelMode& aChannelMode );
|
sl@0
|
371 |
TInt DoGetNumOfSubbands (TUint& aNumOfSubbands );
|
sl@0
|
372 |
TInt DoGetNumOfBlocks (TUint& aNumOfBlocks );
|
sl@0
|
373 |
TInt DoGetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod& aAllocationMethod );
|
sl@0
|
374 |
TInt DoGetBitpoolSize (TUint& aBitpoolSize );
|
sl@0
|
375 |
|
sl@0
|
376 |
private:
|
sl@0
|
377 |
void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, RArray<TUint>& aArray);
|
sl@0
|
378 |
void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, TBool aWriteChannelModeArray);
|
sl@0
|
379 |
|
sl@0
|
380 |
protected:
|
sl@0
|
381 |
MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
|
sl@0
|
382 |
MMMFDevSoundCustomInterfaceTarget* iTarget;
|
sl@0
|
383 |
TUid iDestructorKey;
|
sl@0
|
384 |
MSbcEncoderIntfc* iInterfaceSbcEncoder;
|
sl@0
|
385 |
|
sl@0
|
386 |
private:
|
sl@0
|
387 |
RArray<TUint> iSamplingFrequencies;
|
sl@0
|
388 |
RArray<TUint> iNumOfSubbands;
|
sl@0
|
389 |
RArray<TUint> iNumOfBlocks;
|
sl@0
|
390 |
RArray<MSbcEncoderIntfc::TSbcAllocationMethod> iAllocationMethods;
|
sl@0
|
391 |
RArray<MSbcEncoderIntfc::TSbcChannelMode> iChannelModes;
|
sl@0
|
392 |
};
|
sl@0
|
393 |
|
sl@0
|
394 |
#endif // SBCENCODERCI_H
|