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.
16 #include <ecom/implementationproxy.h>
17 #include <ecom/implementationproxy.h>
18 #include <ecom/ecom.h>
20 #include "eaacplusdecoderci.h"
24 /*****************************************************************************/
26 TInt CMMFEAacPlusDecoderMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceEAacPlusDecoderDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
42 /*****************************************************************************/
43 void CMMFEAacPlusDecoderMux::Release()
45 // close the slave device if it exists
46 if (iRemoteHandle > 0)
48 // we assume the slave is closed correctly
49 iUtility->CloseSlave(iRemoteHandle);
52 TUid key = iDestructorKey;
55 // tell ECom to destroy us
56 REComSession::DestroyedImplementation(key);
59 /*****************************************************************************/
60 void CMMFEAacPlusDecoderMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iDestructorKey = aDestructorKey;
66 /*****************************************************************************/
67 void CMMFEAacPlusDecoderMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
73 /*****************************************************************************/
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFEAacPlusDecoderMux::NewL()
76 CMMFEAacPlusDecoderMux* self = new (ELeave) CMMFEAacPlusDecoderMux;
80 /*****************************************************************************/
81 TAny* CMMFEAacPlusDecoderMux::CustomInterface(TUid /*aInterfaceId*/)
83 MEAacPlusDecoderIntfc* interface = this;
87 /*****************************************************************************/
88 CMMFEAacPlusDecoderMux::CMMFEAacPlusDecoderMux() :
93 /*****************************************************************************/
94 CMMFEAacPlusDecoderMux::~CMMFEAacPlusDecoderMux()
98 /*****************************************************************************/
99 // from MEAacPlusDecoderIntfc
100 void CMMFEAacPlusDecoderMux::SetInputSamplingFrequency(TUint aInputSamplingFrequency)
102 if (iRemoteHandle > 0)
104 // send the frequency in the sync command
105 TPckgBuf<TUint> freqBuffer(aInputSamplingFrequency);
106 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
107 iUtility->SendSlaveSyncCommand( iRemoteHandle,
108 EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency,
113 void CMMFEAacPlusDecoderMux::SetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType)
115 if (iRemoteHandle > 0)
117 // send the object type in the sync command
118 TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> objTypeBuffer(aAudioObjectType);
119 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
120 iUtility->SendSlaveSyncCommand( iRemoteHandle,
121 EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType,
126 void CMMFEAacPlusDecoderMux::SetNumOfChannels(TUint aNumOfChannels)
128 if (iRemoteHandle > 0)
130 // send the number of channels in the sync command
131 TPckgBuf<TUint> numBuffer(aNumOfChannels);
132 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
133 iUtility->SendSlaveSyncCommand( iRemoteHandle,
134 EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels,
139 void CMMFEAacPlusDecoderMux::SetSbr(TBool aSbrEnabled)
141 if (iRemoteHandle > 0)
143 // send the SBR enabled flag in the sync command
144 TPckgBuf<TBool> flagBuffer(aSbrEnabled);
145 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
146 iUtility->SendSlaveSyncCommand( iRemoteHandle,
147 EMMFDevSoundCIEAacPlusDecoderSetSbr,
152 void CMMFEAacPlusDecoderMux::SetDownSampledMode(TBool aDsmEnabled)
154 if (iRemoteHandle > 0)
156 // send the DSM enabled flag in the sync command
157 TPckgBuf<TBool> flagBuffer(aDsmEnabled);
158 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
159 iUtility->SendSlaveSyncCommand( iRemoteHandle,
160 EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode,
165 TInt CMMFEAacPlusDecoderMux::ApplyConfig()
167 TInt retVal = KErrNotReady;
168 if (iRemoteHandle > 0)
170 retVal = iUtility->SendSlaveSyncCommand(iRemoteHandle,
171 EMMFDevSoundCIEAacPlusDecoderApplyConfig,
177 TInt CMMFEAacPlusDecoderMux::GetInputSamplingFrequency(TUint& aInputSamplingFrequency)
179 TInt result = KErrNotReady;
181 if (iRemoteHandle > 0)
183 TPckgBuf<TUint> freqBuffer;
184 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
185 EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency,
188 aInputSamplingFrequency = freqBuffer();
194 TInt CMMFEAacPlusDecoderMux::GetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType)
196 TInt result = KErrNotReady;
198 if (iRemoteHandle > 0)
200 TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> objTypeBuffer;
201 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
202 EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType,
205 aAudioObjectType = objTypeBuffer();
211 TInt CMMFEAacPlusDecoderMux::GetNumOfChannels(TUint& aNumOfChannels)
213 TInt result = KErrNotReady;
214 if (iRemoteHandle > 0)
216 TPckgBuf<TUint> channelsBuffer;
217 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
218 EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels,
221 aNumOfChannels = channelsBuffer();
227 TInt CMMFEAacPlusDecoderMux::GetSbr(TBool& aSbrEnabled)
229 TInt result = KErrNotReady;
230 if (iRemoteHandle > 0)
232 TPckgBuf<TBool> flagBuffer;
233 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
234 EMMFDevSoundCIEAacPlusDecoderGetSbr,
237 aSbrEnabled = flagBuffer();
243 TInt CMMFEAacPlusDecoderMux::GetDownSampledMode(TBool& aDsmEnabled)
245 TInt result = KErrNotReady;
246 if (iRemoteHandle > 0)
248 TPckgBuf<TBool> flagBuffer;
249 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
250 EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode,
253 aDsmEnabled = flagBuffer();
260 /*****************************************************************************/
261 TInt CMMFEAacPlusDecoderDeMux::OpenInterface(TUid /*aInterfaceId*/)
266 /*****************************************************************************/
267 void CMMFEAacPlusDecoderDeMux::Release()
269 TUid key = iDestructorKey;
273 // tell ECom to destroy us
274 REComSession::DestroyedImplementation(key);
277 /*****************************************************************************/
278 void CMMFEAacPlusDecoderDeMux::PassDestructorKey(TUid aDestructorKey)
280 // store the destructor key
281 iDestructorKey = aDestructorKey;
284 /*****************************************************************************/
285 void CMMFEAacPlusDecoderDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
290 /*****************************************************************************/
291 void CMMFEAacPlusDecoderDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
293 // store a pointer to the utility
294 iUtility = aCustomUtility;
297 /*****************************************************************************/
298 void CMMFEAacPlusDecoderDeMux::RefreshL()
300 // refetch the EAAC+ decoder custom interface if we already have a target
303 iInterfaceEAacPlusDecoder = static_cast <MEAacPlusDecoderIntfc*> (iTarget->CustomInterface(KUidEAacPlusDecoderIntfc));
304 if (!iInterfaceEAacPlusDecoder)
306 User::Leave(KErrNotSupported);
311 /*****************************************************************************/
312 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFEAacPlusDecoderDeMux::NewL()
314 CMMFEAacPlusDecoderDeMux* self = new (ELeave) CMMFEAacPlusDecoderDeMux;
318 /*****************************************************************************/
319 CMMFEAacPlusDecoderDeMux::CMMFEAacPlusDecoderDeMux()
323 /*****************************************************************************/
324 CMMFEAacPlusDecoderDeMux::~CMMFEAacPlusDecoderDeMux()
328 /*****************************************************************************/
329 TInt CMMFEAacPlusDecoderDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
331 // fetch the EAAC+ decoder Hw Device custom interface
332 iInterfaceEAacPlusDecoder = static_cast<MEAacPlusDecoderIntfc*> (iTarget->CustomInterface(KUidEAacPlusDecoderIntfc));
334 if (!iInterfaceEAacPlusDecoder)
336 User::Leave(KErrNotSupported);
342 /*****************************************************************************/
343 void CMMFEAacPlusDecoderDeMux::DoCloseSlaveL(TInt /*aHandle*/)
348 /*****************************************************************************/
349 // original RMessage is supplied so that remote demux plugin can extract necessary details
350 // using DeMux utility
351 TInt CMMFEAacPlusDecoderDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
353 TMMFDevSoundCIMessageData data;
356 iUtility->GetSyncMessageDataL(aMessage, data);
359 switch (data.iCommand)
361 case EMMFDevSoundCIEAacPlusDecoderSetInputSamplingFrequency:
363 TPckgBuf<TUint> freqBuffer;
364 iUtility->ReadFromInputDesL(aMessage, &freqBuffer);
365 DoSetInputSamplingFrequency(freqBuffer());
369 case EMMFDevSoundCIEAacPlusDecoderSetAudioObjectType:
371 TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> audioObjectTypeBuffer;
372 iUtility->ReadFromInputDesL(aMessage, &audioObjectTypeBuffer);
373 DoSetAudioObjectType(audioObjectTypeBuffer());
377 case EMMFDevSoundCIEAacPlusDecoderSetNumOfChannels:
379 TPckgBuf<TUint> numChannelsBuffer;
380 iUtility->ReadFromInputDesL(aMessage, &numChannelsBuffer);
381 DoSetNumOfChannels(numChannelsBuffer());
385 case EMMFDevSoundCIEAacPlusDecoderSetSbr:
387 TPckgBuf<TBool> flagBuffer;
388 iUtility->ReadFromInputDesL(aMessage, &flagBuffer);
389 DoSetSbr(flagBuffer());
393 case EMMFDevSoundCIEAacPlusDecoderSetDownSampledMode:
395 TPckgBuf<TBool> flagBuffer;
396 iUtility->ReadFromInputDesL(aMessage, &flagBuffer);
397 DoSetDownSampledMode(flagBuffer());
401 case EMMFDevSoundCIEAacPlusDecoderApplyConfig:
403 retVal = DoApplyConfig();
408 User::Leave(KErrNotSupported);
415 /*****************************************************************************/
416 TInt CMMFEAacPlusDecoderDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
418 TMMFDevSoundCIMessageData data;
421 iUtility->GetSyncMessageDataL(aMessage, data);
424 switch (data.iCommand)
426 case EMMFDevSoundCIEAacPlusDecoderGetInputSamplingFrequency:
428 TPckgBuf<TUint> freqBuf;
429 retVal = DoGetInputSamplingFrequency(freqBuf());
430 iUtility->WriteToOutputDesL(aMessage, freqBuf);
433 case EMMFDevSoundCIEAacPlusDecoderGetAudioObjectType:
435 TPckgBuf<MEAacPlusDecoderIntfc::TAudioObjectType> objTypeBuf;
436 retVal = DoGetAudioObjectType(objTypeBuf());
437 iUtility->WriteToOutputDesL(aMessage, objTypeBuf);
440 case EMMFDevSoundCIEAacPlusDecoderGetNumOfChannels:
442 TPckgBuf<TUint> channelsBuf;
443 retVal = DoGetNumOfChannels(channelsBuf());
444 iUtility->WriteToOutputDesL(aMessage, channelsBuf);
447 case EMMFDevSoundCIEAacPlusDecoderGetSbr:
449 TPckgBuf<TBool> flagBuf;
450 retVal = DoGetSbr(flagBuf());
451 iUtility->WriteToOutputDesL(aMessage, flagBuf);
454 case EMMFDevSoundCIEAacPlusDecoderGetDownSampledMode:
456 TPckgBuf<TBool> flagBuf;
457 retVal = DoGetDownSampledMode(flagBuf());
458 iUtility->WriteToOutputDesL(aMessage, flagBuf);
463 User::Leave(KErrNotSupported);
470 /*****************************************************************************/
471 void CMMFEAacPlusDecoderDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
473 // not used in this interface
476 /*****************************************************************************/
477 void CMMFEAacPlusDecoderDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
479 // not used in this interface
482 /*****************************************************************************/
483 // EAAC+ Decoder custom interface implementation
484 void CMMFEAacPlusDecoderDeMux::DoSetInputSamplingFrequency(TUint aInputSamplingFrequency)
486 if (iInterfaceEAacPlusDecoder)
488 iInterfaceEAacPlusDecoder->SetInputSamplingFrequency(aInputSamplingFrequency);
492 /*****************************************************************************/
493 void CMMFEAacPlusDecoderDeMux::DoSetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType aAudioObjectType)
495 if (iInterfaceEAacPlusDecoder)
497 iInterfaceEAacPlusDecoder->SetAudioObjectType(aAudioObjectType);
501 /*****************************************************************************/
502 void CMMFEAacPlusDecoderDeMux::DoSetNumOfChannels(TUint aNumOfChannels)
504 if (iInterfaceEAacPlusDecoder)
506 iInterfaceEAacPlusDecoder->SetNumOfChannels(aNumOfChannels);
510 /*****************************************************************************/
511 void CMMFEAacPlusDecoderDeMux::DoSetSbr(TBool aSbrEnabled)
513 if (iInterfaceEAacPlusDecoder)
515 iInterfaceEAacPlusDecoder->SetSbr(aSbrEnabled);
519 /*****************************************************************************/
520 void CMMFEAacPlusDecoderDeMux::DoSetDownSampledMode(TBool aDsmEnabled)
522 if (iInterfaceEAacPlusDecoder)
524 iInterfaceEAacPlusDecoder->SetDownSampledMode(aDsmEnabled);
528 /*****************************************************************************/
529 TInt CMMFEAacPlusDecoderDeMux::DoApplyConfig()
531 // Initialise the return value to an error that reflects the plugin's not ready
532 TInt retVal = KErrNotReady;
533 if (iInterfaceEAacPlusDecoder)
535 retVal = iInterfaceEAacPlusDecoder->ApplyConfig();
540 /*****************************************************************************/
541 TInt CMMFEAacPlusDecoderDeMux::DoGetInputSamplingFrequency(TUint& aInputSamplingFrequency)
543 TInt ret = KErrNotReady;
544 if (iInterfaceEAacPlusDecoder)
546 ret = iInterfaceEAacPlusDecoder->GetInputSamplingFrequency(aInputSamplingFrequency);
551 /*****************************************************************************/
552 TInt CMMFEAacPlusDecoderDeMux::DoGetAudioObjectType(MEAacPlusDecoderIntfc::TAudioObjectType& aAudioObjectType)
554 TInt err = KErrNotReady;
555 if (iInterfaceEAacPlusDecoder)
557 err = iInterfaceEAacPlusDecoder->GetAudioObjectType(aAudioObjectType);
562 /*****************************************************************************/
563 TInt CMMFEAacPlusDecoderDeMux::DoGetNumOfChannels(TUint& aNumOfChannels)
565 TInt err = KErrNotReady;
566 if (iInterfaceEAacPlusDecoder)
568 err = iInterfaceEAacPlusDecoder->GetNumOfChannels(aNumOfChannels);
573 /*****************************************************************************/
574 TInt CMMFEAacPlusDecoderDeMux::DoGetSbr(TBool& aSbrEnabled)
576 TInt err = KErrNotReady;
577 if (iInterfaceEAacPlusDecoder)
579 err = iInterfaceEAacPlusDecoder->GetSbr(aSbrEnabled);
584 /*****************************************************************************/
585 TInt CMMFEAacPlusDecoderDeMux::DoGetDownSampledMode(TBool& aDsmEnabled)
587 TInt err = KErrNotReady;
588 if (iInterfaceEAacPlusDecoder)
590 err = iInterfaceEAacPlusDecoder->GetDownSampledMode(aDsmEnabled);
595 /*****************************************************************************/
597 /*****************************************************************************/
599 // ImplementationTable
602 const TImplementationProxy ImplementationTable[] =
604 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceEAacPlusDecoderMux, CMMFEAacPlusDecoderMux::NewL),
605 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceEAacPlusDecoderDeMux, CMMFEAacPlusDecoderDeMux::NewL),
608 /*****************************************************************************/
610 // ImplementationGroupProxy
614 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
616 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
618 return ImplementationTable;