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 |
#include <ecom/implementationproxy.h>
|
sl@0
|
17 |
#include <ecom/implementationproxy.h>
|
sl@0
|
18 |
#include <ecom/ecom.h>
|
sl@0
|
19 |
#include <s32mem.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "g711decoderconfigci.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
// MUX //
|
sl@0
|
25 |
|
sl@0
|
26 |
TInt CMMFG711DecoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
// attempt to open the interface link with the
|
sl@0
|
29 |
// remote slave device
|
sl@0
|
30 |
iRemoteHandle = -1;
|
sl@0
|
31 |
TUid slaveId = {KMmfUidCustomInterfaceG711DecoderIntfcDeMux};
|
sl@0
|
32 |
|
sl@0
|
33 |
TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
|
sl@0
|
34 |
if (handle >= 0)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
iRemoteHandle = handle;
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
return iRemoteHandle;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
void CMMFG711DecoderIntfcMux::Release()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
// close the slave device if it exists
|
sl@0
|
46 |
if (iRemoteHandle > 0)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
// we assume the slave is closed correctly
|
sl@0
|
49 |
iUtility->CloseSlave(iRemoteHandle);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
TUid key = iKey;
|
sl@0
|
53 |
delete this;
|
sl@0
|
54 |
|
sl@0
|
55 |
// tell ECom to destroy us
|
sl@0
|
56 |
REComSession::DestroyedImplementation(key);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
void CMMFG711DecoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
// store the destructor key
|
sl@0
|
63 |
iKey = aDestructorKey;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
void CMMFG711DecoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// store a pointer to the utility
|
sl@0
|
70 |
iUtility = aCustomUtility;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
|
sl@0
|
74 |
MMMFDevSoundCustomInterfaceMuxPlugin* CMMFG711DecoderIntfcMux::NewL()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
CMMFG711DecoderIntfcMux* self = new (ELeave) CMMFG711DecoderIntfcMux;
|
sl@0
|
77 |
return self;
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
|
sl@0
|
81 |
TAny* CMMFG711DecoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
MG711DecoderIntfc* interface = this;
|
sl@0
|
84 |
return interface;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
CMMFG711DecoderIntfcMux::CMMFG711DecoderIntfcMux() :
|
sl@0
|
89 |
iRemoteHandle(-1)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
CMMFG711DecoderIntfcMux::~CMMFG711DecoderIntfcMux()
|
sl@0
|
95 |
{
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
|
sl@0
|
99 |
// from MG711DecoderIntfc
|
sl@0
|
100 |
TInt CMMFG711DecoderIntfcMux::SetDecoderMode(TDecodeMode aDecodeMode)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
TInt result = KErrBadHandle;
|
sl@0
|
103 |
|
sl@0
|
104 |
if (iRemoteHandle > 0)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
// send the decodeMode in the sync command
|
sl@0
|
107 |
TPckgBuf<TDecodeMode> decodeMode(aDecodeMode);
|
sl@0
|
108 |
|
sl@0
|
109 |
// any return code other than zero is an error
|
sl@0
|
110 |
result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
|
sl@0
|
111 |
EMMFDevSoundCIG711DecoderIntfcSetDecoderMode,
|
sl@0
|
112 |
decodeMode);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
return result;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
|
sl@0
|
119 |
// from MG711DecoderIntfc
|
sl@0
|
120 |
TInt CMMFG711DecoderIntfcMux::GetDecoderMode(TDecodeMode& aDecodeMode)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
TInt result = KErrBadHandle;
|
sl@0
|
123 |
|
sl@0
|
124 |
if (iRemoteHandle > 0)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
// send the decodeMode in the sync command
|
sl@0
|
127 |
TPckgBuf<TDecodeMode> retDecodeMode;
|
sl@0
|
128 |
|
sl@0
|
129 |
// any return code other than zero is an error
|
sl@0
|
130 |
result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
|
sl@0
|
131 |
EMMFDevSoundCIG711DecoderIntfcGetDecoderMode,
|
sl@0
|
132 |
KNullDesC8,
|
sl@0
|
133 |
retDecodeMode);
|
sl@0
|
134 |
|
sl@0
|
135 |
// assign return values to aDecodeMode. Do nothing if there is an error
|
sl@0
|
136 |
if(result == KErrNone)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
aDecodeMode = retDecodeMode();
|
sl@0
|
139 |
}
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
return result;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
|
sl@0
|
146 |
// from MG711DecoderIntfc
|
sl@0
|
147 |
TInt CMMFG711DecoderIntfcMux::SetComfortNoiseGeneration(TBool aCng)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
TInt result = KErrBadHandle;
|
sl@0
|
150 |
|
sl@0
|
151 |
if (iRemoteHandle > 0)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
// send the cng in the sync command
|
sl@0
|
154 |
TPckgBuf<TBool> cng(aCng);
|
sl@0
|
155 |
|
sl@0
|
156 |
// any return code other than zero is an error
|
sl@0
|
157 |
result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
|
sl@0
|
158 |
EMMFDevSoundCIG711DecoderIntfcSetComfortNoiseGeneration,
|
sl@0
|
159 |
cng);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
return result;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
|
sl@0
|
166 |
// from MG711DecoderIntfc
|
sl@0
|
167 |
TInt CMMFG711DecoderIntfcMux::GetComfortNoiseGeneration(TBool& aCng)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
TInt result = KErrBadHandle;
|
sl@0
|
170 |
|
sl@0
|
171 |
if (iRemoteHandle > 0)
|
sl@0
|
172 |
{
|
sl@0
|
173 |
// holds the returned value.
|
sl@0
|
174 |
TPckgBuf<TBool> retCng;
|
sl@0
|
175 |
|
sl@0
|
176 |
// any return code other than zero is an error
|
sl@0
|
177 |
result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
|
sl@0
|
178 |
EMMFDevSoundCIG711DecoderIntfcGetComfortNoiseGeneration,
|
sl@0
|
179 |
KNullDesC8,
|
sl@0
|
180 |
retCng);
|
sl@0
|
181 |
|
sl@0
|
182 |
// assign return values to aCng. Do nothing if there is an error
|
sl@0
|
183 |
if(result == KErrNone)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
aCng = retCng();
|
sl@0
|
186 |
}
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
return result;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
|
sl@0
|
193 |
// from MG711DecoderIntfc
|
sl@0
|
194 |
TInt CMMFG711DecoderIntfcMux::SetPacketLossConcealment(TBool aPlc)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
TInt result = KErrBadHandle;
|
sl@0
|
197 |
|
sl@0
|
198 |
if (iRemoteHandle > 0)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
// send the plc in the sync command
|
sl@0
|
201 |
TPckgBuf<TBool> plc(aPlc);
|
sl@0
|
202 |
|
sl@0
|
203 |
// any return code other than zero is an error
|
sl@0
|
204 |
result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
|
sl@0
|
205 |
EMMFDevSoundCIG711DecoderIntfcSetPacketLossConcealment,
|
sl@0
|
206 |
plc);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
return result;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
// from MG711DecoderIntfc
|
sl@0
|
214 |
TInt CMMFG711DecoderIntfcMux::GetPacketLossConcealment(TBool& aPlc)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
TInt result = KErrBadHandle;
|
sl@0
|
217 |
|
sl@0
|
218 |
if (iRemoteHandle > 0)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
// send the plc in the sync command
|
sl@0
|
221 |
TPckgBuf<TBool> retPlc;
|
sl@0
|
222 |
|
sl@0
|
223 |
// any return code other than zero is an error
|
sl@0
|
224 |
result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
|
sl@0
|
225 |
EMMFDevSoundCIG711DecoderIntfcGetPacketLossConcealment,
|
sl@0
|
226 |
KNullDesC8,
|
sl@0
|
227 |
retPlc);
|
sl@0
|
228 |
|
sl@0
|
229 |
// assign return values to aPlc. Do nothing if there is an error
|
sl@0
|
230 |
if(result == KErrNone)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
aPlc = retPlc();
|
sl@0
|
233 |
}
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
return result;
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
|
sl@0
|
240 |
|
sl@0
|
241 |
// DEMUX //
|
sl@0
|
242 |
|
sl@0
|
243 |
TInt CMMFG711DecoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
|
sl@0
|
244 |
{
|
sl@0
|
245 |
return KErrNone;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
|
sl@0
|
249 |
void CMMFG711DecoderIntfcDeMux::Release()
|
sl@0
|
250 |
{
|
sl@0
|
251 |
TUid key = iKey;
|
sl@0
|
252 |
|
sl@0
|
253 |
delete this;
|
sl@0
|
254 |
|
sl@0
|
255 |
// tell ECom to destroy us
|
sl@0
|
256 |
REComSession::DestroyedImplementation(key);
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
|
sl@0
|
260 |
void CMMFG711DecoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
// store the destructor key
|
sl@0
|
263 |
iKey = aDestructorKey;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
|
sl@0
|
267 |
void CMMFG711DecoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
iTarget = aTarget;
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
|
sl@0
|
273 |
void CMMFG711DecoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
// store a pointer to the utility
|
sl@0
|
276 |
iUtility = aCustomUtility;
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
|
sl@0
|
280 |
void CMMFG711DecoderIntfcDeMux::RefreshL()
|
sl@0
|
281 |
{
|
sl@0
|
282 |
// refetch the G711 decoder intfc custom interface if we already have a target
|
sl@0
|
283 |
if (iTarget)
|
sl@0
|
284 |
{
|
sl@0
|
285 |
iInterfaceG711DecoderIntfc = static_cast <MG711DecoderIntfc*> (iTarget->CustomInterface(KUidG711DecoderIntfc));
|
sl@0
|
286 |
|
sl@0
|
287 |
if (!iInterfaceG711DecoderIntfc)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
iInterfaceG711DecoderIntfc = NULL;
|
sl@0
|
290 |
User::Leave(KErrNotSupported);
|
sl@0
|
291 |
}
|
sl@0
|
292 |
}
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
|
sl@0
|
296 |
MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFG711DecoderIntfcDeMux::NewL()
|
sl@0
|
297 |
{
|
sl@0
|
298 |
CMMFG711DecoderIntfcDeMux* self = new (ELeave) CMMFG711DecoderIntfcDeMux;
|
sl@0
|
299 |
return self;
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
|
sl@0
|
303 |
CMMFG711DecoderIntfcDeMux::CMMFG711DecoderIntfcDeMux()
|
sl@0
|
304 |
{
|
sl@0
|
305 |
}
|
sl@0
|
306 |
|
sl@0
|
307 |
|
sl@0
|
308 |
CMMFG711DecoderIntfcDeMux::~CMMFG711DecoderIntfcDeMux()
|
sl@0
|
309 |
{
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
|
sl@0
|
313 |
TInt CMMFG711DecoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
// fetch the G711 decoder intfc Hw Device custom interface
|
sl@0
|
316 |
iInterfaceG711DecoderIntfc = static_cast<MG711DecoderIntfc*> (iTarget->CustomInterface(KUidG711DecoderIntfc));
|
sl@0
|
317 |
|
sl@0
|
318 |
if (!iInterfaceG711DecoderIntfc)
|
sl@0
|
319 |
{
|
sl@0
|
320 |
iInterfaceG711DecoderIntfc = NULL;
|
sl@0
|
321 |
User::Leave(KErrNotSupported);
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
return KErrNone;
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
|
sl@0
|
328 |
void CMMFG711DecoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
// nothing to do
|
sl@0
|
331 |
}
|
sl@0
|
332 |
|
sl@0
|
333 |
|
sl@0
|
334 |
// original RMessage is supplied so that remote demux plugin can extract necessary details
|
sl@0
|
335 |
// using DeMux utility
|
sl@0
|
336 |
TInt CMMFG711DecoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
|
sl@0
|
337 |
{
|
sl@0
|
338 |
TMMFDevSoundCIMessageData data;
|
sl@0
|
339 |
TInt result = KErrGeneral;
|
sl@0
|
340 |
|
sl@0
|
341 |
// decode message
|
sl@0
|
342 |
iUtility->GetSyncMessageDataL(aMessage, data);
|
sl@0
|
343 |
|
sl@0
|
344 |
switch (data.iCommand)
|
sl@0
|
345 |
{
|
sl@0
|
346 |
case EMMFDevSoundCIG711DecoderIntfcSetDecoderMode:
|
sl@0
|
347 |
{
|
sl@0
|
348 |
TPckgBuf<MG711DecoderIntfc::TDecodeMode> decodeMode;
|
sl@0
|
349 |
iUtility->ReadFromInputDesL(aMessage, &decodeMode);
|
sl@0
|
350 |
|
sl@0
|
351 |
result = DoSetDecoderModeL(decodeMode());
|
sl@0
|
352 |
|
sl@0
|
353 |
break;
|
sl@0
|
354 |
}
|
sl@0
|
355 |
case EMMFDevSoundCIG711DecoderIntfcSetComfortNoiseGeneration:
|
sl@0
|
356 |
{
|
sl@0
|
357 |
TPckgBuf<TBool> cng;
|
sl@0
|
358 |
iUtility->ReadFromInputDesL(aMessage, &cng);
|
sl@0
|
359 |
|
sl@0
|
360 |
result = DoSetComfortNoiseGenerationL(cng());
|
sl@0
|
361 |
break;
|
sl@0
|
362 |
}
|
sl@0
|
363 |
case EMMFDevSoundCIG711DecoderIntfcSetPacketLossConcealment:
|
sl@0
|
364 |
{
|
sl@0
|
365 |
TPckgBuf<TBool> plc;
|
sl@0
|
366 |
iUtility->ReadFromInputDesL(aMessage, &plc);
|
sl@0
|
367 |
|
sl@0
|
368 |
result = DoSetPacketLossConcealmentL(plc());
|
sl@0
|
369 |
break;
|
sl@0
|
370 |
}
|
sl@0
|
371 |
default:
|
sl@0
|
372 |
{
|
sl@0
|
373 |
User::Leave(KErrNotSupported);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
return result;
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
|
sl@0
|
381 |
// original RMessage is supplied so that remote demux plugin can extract necessary details
|
sl@0
|
382 |
// using DeMux utility
|
sl@0
|
383 |
TInt CMMFG711DecoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
TMMFDevSoundCIMessageData data;
|
sl@0
|
386 |
TInt result = KErrGeneral;
|
sl@0
|
387 |
|
sl@0
|
388 |
// decode message
|
sl@0
|
389 |
iUtility->GetSyncMessageDataL(aMessage, data);
|
sl@0
|
390 |
|
sl@0
|
391 |
switch (data.iCommand)
|
sl@0
|
392 |
{
|
sl@0
|
393 |
case EMMFDevSoundCIG711DecoderIntfcGetDecoderMode:
|
sl@0
|
394 |
{
|
sl@0
|
395 |
TPckgBuf<MG711DecoderIntfc::TDecodeMode> decodeMode;
|
sl@0
|
396 |
iUtility->ReadFromInputDesL(aMessage, &decodeMode);
|
sl@0
|
397 |
|
sl@0
|
398 |
result = DoGetDecoderModeL(decodeMode());
|
sl@0
|
399 |
|
sl@0
|
400 |
TPckgBuf<TBool> des(decodeMode());
|
sl@0
|
401 |
iUtility->WriteToOutputDesL(aMessage, des);
|
sl@0
|
402 |
|
sl@0
|
403 |
break;
|
sl@0
|
404 |
}
|
sl@0
|
405 |
case EMMFDevSoundCIG711DecoderIntfcGetComfortNoiseGeneration:
|
sl@0
|
406 |
{
|
sl@0
|
407 |
TPckgBuf<TBool> cng;
|
sl@0
|
408 |
iUtility->ReadFromInputDesL(aMessage, &cng);
|
sl@0
|
409 |
|
sl@0
|
410 |
result = DoGetComfortNoiseGenerationL(cng());
|
sl@0
|
411 |
|
sl@0
|
412 |
TPckgBuf<TBool> des(cng());
|
sl@0
|
413 |
iUtility->WriteToOutputDesL(aMessage, des);
|
sl@0
|
414 |
|
sl@0
|
415 |
break;
|
sl@0
|
416 |
}
|
sl@0
|
417 |
case EMMFDevSoundCIG711DecoderIntfcGetPacketLossConcealment:
|
sl@0
|
418 |
{
|
sl@0
|
419 |
TPckgBuf<TBool> plc;
|
sl@0
|
420 |
iUtility->ReadFromInputDesL(aMessage, &plc);
|
sl@0
|
421 |
|
sl@0
|
422 |
result = DoGetPacketLossConcealmentL(plc());
|
sl@0
|
423 |
|
sl@0
|
424 |
TPckgBuf<TBool> des(plc());
|
sl@0
|
425 |
iUtility->WriteToOutputDesL(aMessage, des);
|
sl@0
|
426 |
|
sl@0
|
427 |
break;
|
sl@0
|
428 |
}
|
sl@0
|
429 |
default:
|
sl@0
|
430 |
{
|
sl@0
|
431 |
User::Leave(KErrNotSupported);
|
sl@0
|
432 |
}
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
return result;
|
sl@0
|
436 |
}
|
sl@0
|
437 |
|
sl@0
|
438 |
|
sl@0
|
439 |
void CMMFG711DecoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
|
sl@0
|
440 |
{
|
sl@0
|
441 |
// not used in this interface
|
sl@0
|
442 |
}
|
sl@0
|
443 |
|
sl@0
|
444 |
|
sl@0
|
445 |
void CMMFG711DecoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
|
sl@0
|
446 |
{
|
sl@0
|
447 |
// not used in this interface
|
sl@0
|
448 |
}
|
sl@0
|
449 |
|
sl@0
|
450 |
|
sl@0
|
451 |
// G711 decoder intfc custom interface implementation
|
sl@0
|
452 |
TInt CMMFG711DecoderIntfcDeMux::DoSetDecoderModeL(MG711DecoderIntfc::TDecodeMode aDecodeMode)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
TInt result = KErrNotFound;
|
sl@0
|
455 |
|
sl@0
|
456 |
if (iInterfaceG711DecoderIntfc)
|
sl@0
|
457 |
{
|
sl@0
|
458 |
result = iInterfaceG711DecoderIntfc->SetDecoderMode(aDecodeMode);
|
sl@0
|
459 |
}
|
sl@0
|
460 |
|
sl@0
|
461 |
return result;
|
sl@0
|
462 |
}
|
sl@0
|
463 |
|
sl@0
|
464 |
|
sl@0
|
465 |
// G711 decoder intfc custom interface implementation
|
sl@0
|
466 |
TInt CMMFG711DecoderIntfcDeMux::DoGetDecoderModeL(MG711DecoderIntfc::TDecodeMode& aDecodeMode)
|
sl@0
|
467 |
{
|
sl@0
|
468 |
TInt result = KErrNotFound;
|
sl@0
|
469 |
|
sl@0
|
470 |
if (iInterfaceG711DecoderIntfc)
|
sl@0
|
471 |
{
|
sl@0
|
472 |
result = iInterfaceG711DecoderIntfc->GetDecoderMode(aDecodeMode);
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
return result;
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|
sl@0
|
478 |
|
sl@0
|
479 |
// G711 decoder intfc custom interface implementation
|
sl@0
|
480 |
TInt CMMFG711DecoderIntfcDeMux::DoSetComfortNoiseGenerationL(TBool aCng)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
TInt result = KErrNotFound;
|
sl@0
|
483 |
|
sl@0
|
484 |
if (iInterfaceG711DecoderIntfc)
|
sl@0
|
485 |
{
|
sl@0
|
486 |
result = iInterfaceG711DecoderIntfc->SetComfortNoiseGeneration(aCng);
|
sl@0
|
487 |
}
|
sl@0
|
488 |
|
sl@0
|
489 |
return result;
|
sl@0
|
490 |
}
|
sl@0
|
491 |
|
sl@0
|
492 |
|
sl@0
|
493 |
// G711 decoder intfc custom interface implementation
|
sl@0
|
494 |
TInt CMMFG711DecoderIntfcDeMux::DoGetComfortNoiseGenerationL(TBool& aCng)
|
sl@0
|
495 |
{
|
sl@0
|
496 |
TInt result = KErrNotFound;
|
sl@0
|
497 |
|
sl@0
|
498 |
if (iInterfaceG711DecoderIntfc)
|
sl@0
|
499 |
{
|
sl@0
|
500 |
result = iInterfaceG711DecoderIntfc->GetComfortNoiseGeneration(aCng);
|
sl@0
|
501 |
}
|
sl@0
|
502 |
|
sl@0
|
503 |
return result;
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
|
sl@0
|
507 |
// G711 decoder intfc custom interface implementation
|
sl@0
|
508 |
TInt CMMFG711DecoderIntfcDeMux::DoSetPacketLossConcealmentL(TBool aPlc)
|
sl@0
|
509 |
{
|
sl@0
|
510 |
TInt result = KErrNotFound;
|
sl@0
|
511 |
|
sl@0
|
512 |
if (iInterfaceG711DecoderIntfc)
|
sl@0
|
513 |
{
|
sl@0
|
514 |
result = iInterfaceG711DecoderIntfc->SetPacketLossConcealment(aPlc);
|
sl@0
|
515 |
}
|
sl@0
|
516 |
|
sl@0
|
517 |
return result;
|
sl@0
|
518 |
}
|
sl@0
|
519 |
|
sl@0
|
520 |
|
sl@0
|
521 |
// G711 decoder intfc custom interface implementation
|
sl@0
|
522 |
TInt CMMFG711DecoderIntfcDeMux::DoGetPacketLossConcealmentL(TBool& aPlc)
|
sl@0
|
523 |
{
|
sl@0
|
524 |
TInt result = KErrNotFound;
|
sl@0
|
525 |
|
sl@0
|
526 |
if (iInterfaceG711DecoderIntfc)
|
sl@0
|
527 |
{
|
sl@0
|
528 |
result = iInterfaceG711DecoderIntfc->GetPacketLossConcealment(aPlc);
|
sl@0
|
529 |
}
|
sl@0
|
530 |
|
sl@0
|
531 |
return result;
|
sl@0
|
532 |
}
|
sl@0
|
533 |
|
sl@0
|
534 |
|
sl@0
|
535 |
//
|
sl@0
|
536 |
// ImplementationTable
|
sl@0
|
537 |
//
|
sl@0
|
538 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
539 |
{
|
sl@0
|
540 |
IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG711DecoderIntfcMux, CMMFG711DecoderIntfcMux::NewL),
|
sl@0
|
541 |
IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG711DecoderIntfcDeMux, CMMFG711DecoderIntfcDeMux::NewL),
|
sl@0
|
542 |
};
|
sl@0
|
543 |
|
sl@0
|
544 |
//
|
sl@0
|
545 |
// ImplementationGroupProxy
|
sl@0
|
546 |
//
|
sl@0
|
547 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
550 |
|
sl@0
|
551 |
return ImplementationTable;
|
sl@0
|
552 |
}
|