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>
21 #include "sbcencoderci.h"
32 /*****************************************************************************/
34 TInt CMMFSbcEncoderMux::OpenInterface(TUid /*aInterfaceId*/)
36 // attempt to open the interface link with the
37 // remote slave device
39 TUid slaveId = {KMmfUidCustomInterfaceSbcEncoderDeMux};
41 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
44 iRemoteHandle = handle;
50 /*****************************************************************************/
51 void CMMFSbcEncoderMux::Release()
53 // close the slave device if it exists
54 if (iRemoteHandle > 0)
56 // we assume the slave is closed correctly
57 iUtility->CloseSlave(iRemoteHandle);
60 TUid key = iDestructorKey;
63 // tell ECom to destroy us
64 REComSession::DestroyedImplementation(key);
67 /*****************************************************************************/
68 void CMMFSbcEncoderMux::PassDestructorKey(TUid aDestructorKey)
70 // store the destructor key
71 iDestructorKey = aDestructorKey;
74 /*****************************************************************************/
75 void CMMFSbcEncoderMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
77 // store a pointer to the utility
78 iUtility = aCustomUtility;
81 /*****************************************************************************/
82 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFSbcEncoderMux::NewL()
84 CMMFSbcEncoderMux* self = new (ELeave) CMMFSbcEncoderMux;
88 /*****************************************************************************/
89 TAny* CMMFSbcEncoderMux::CustomInterface(TUid /*aInterfaceId*/)
91 MSbcEncoderIntfc* interface = this;
95 /*****************************************************************************/
96 CMMFSbcEncoderMux::CMMFSbcEncoderMux() :
101 /*****************************************************************************/
102 CMMFSbcEncoderMux::~CMMFSbcEncoderMux()
106 /*****************************************************************************/
107 // from MSbcEncoderIntfc
108 TInt CMMFSbcEncoderMux::GetSupportedBitpoolRange(TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize)
110 TInt err = KErrNotReady;
111 if (iRemoteHandle > 0)
116 TPckgBuf<TBitpoolRange> rangeBuffer(range);
117 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
118 EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange,
123 aMinSupportedBitpoolSize = rangeBuffer().iMin;
124 aMaxSupportedBitpoolSize = rangeBuffer().iMax;
130 void CMMFSbcEncoderMux::SetSamplingFrequency(TUint aSamplingFrequency)
132 if (iRemoteHandle > 0)
134 // send the frequency in the sync command
135 TPckgBuf<TUint> freqBuffer(aSamplingFrequency);
136 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
137 iUtility->SendSlaveSyncCommand( iRemoteHandle,
138 EMMFDevSoundCISbcEncoderSetSamplingFrequency,
143 void CMMFSbcEncoderMux::SetChannelMode (TSbcChannelMode aChannelMode)
145 if (iRemoteHandle > 0)
147 // send the channel mode in the sync command
148 TPckgBuf<MSbcEncoderIntfc::TSbcChannelMode> channelModeBuffer(aChannelMode);
149 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
150 iUtility->SendSlaveSyncCommand( iRemoteHandle,
151 EMMFDevSoundCISbcEncoderSetChannelMode,
156 void CMMFSbcEncoderMux::SetNumOfSubbands ( TUint aNumOfSubbands )
158 if (iRemoteHandle > 0)
160 // send the number of subbands in the sync command
161 TPckgBuf<TUint> numBuffer(aNumOfSubbands);
162 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
163 iUtility->SendSlaveSyncCommand( iRemoteHandle,
164 EMMFDevSoundCISbcEncoderSetSubbands,
169 void CMMFSbcEncoderMux::SetNumOfBlocks ( TUint aNumOfBlocks )
171 if (iRemoteHandle > 0)
173 // send the number of blocks in the sync command
174 TPckgBuf<TUint> blocksBuffer(aNumOfBlocks);
175 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
176 iUtility->SendSlaveSyncCommand( iRemoteHandle,
177 EMMFDevSoundCISbcEncoderSetBlocks,
182 void CMMFSbcEncoderMux::SetAllocationMethod (TSbcAllocationMethod aAllocationMethod )
184 if (iRemoteHandle > 0)
186 // send the allocation method in the sync command
187 TPckgBuf<TSbcAllocationMethod> allocMethodBuffer(aAllocationMethod);
188 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
189 iUtility->SendSlaveSyncCommand( iRemoteHandle,
190 EMMFDevSoundCISbcEncoderSetAllocationMethod,
195 void CMMFSbcEncoderMux::SetBitpoolSize (TUint aBitpoolSize )
197 if (iRemoteHandle > 0)
199 // send the bitpool size in the sync command
200 TPckgBuf<TUint> sizeBuffer(aBitpoolSize);
201 // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
202 iUtility->SendSlaveSyncCommand( iRemoteHandle,
203 EMMFDevSoundCISbcEncoderSetBitpoolSize,
208 TInt CMMFSbcEncoderMux::ApplyConfig()
210 TInt err = KErrNotReady;
211 if (iRemoteHandle > 0)
213 err = iUtility->SendSlaveSyncCommand(iRemoteHandle,
214 EMMFDevSoundCISbcEncoderApplyConfig,
220 TInt CMMFSbcEncoderMux::GetSamplingFrequency(TUint& aSamplingFrequency)
222 TInt err = KErrNotReady;
224 if (iRemoteHandle > 0)
226 TPckgBuf<TUint> freqBuffer;
227 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
228 EMMFDevSoundCISbcEncoderGetSamplingFrequency,
233 aSamplingFrequency = freqBuffer();
240 TInt CMMFSbcEncoderMux::GetNumOfSubbands (TUint& aNumOfSubbands )
242 TInt err = KErrNotReady;
243 if (iRemoteHandle > 0)
245 TPckgBuf<TUint> sizeBuffer;
246 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
247 EMMFDevSoundCISbcEncoderGetSubbands,
252 aNumOfSubbands = sizeBuffer();
258 TInt CMMFSbcEncoderMux::GetNumOfBlocks (TUint& aNumOfBlocks )
260 TInt err = KErrNotReady;
261 if (iRemoteHandle > 0)
263 TPckgBuf<TUint> blocksBuffer;
264 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
265 EMMFDevSoundCISbcEncoderGetBlocks,
270 aNumOfBlocks = blocksBuffer();
276 TInt CMMFSbcEncoderMux::GetAllocationMethod (TSbcAllocationMethod& aAllocationMethod )
278 TInt err = KErrNotReady;
279 if (iRemoteHandle > 0)
281 TPckgBuf<TSbcAllocationMethod> allocMethodBuffer;
282 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
283 EMMFDevSoundCISbcEncoderGetAllocationMethod,
288 aAllocationMethod = allocMethodBuffer();
294 TInt CMMFSbcEncoderMux::GetBitpoolSize (TUint& aBitpoolSize )
296 TInt err = KErrNotReady;
297 if (iRemoteHandle > 0)
299 TPckgBuf<TUint> sizeBuffer;
300 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
301 EMMFDevSoundCISbcEncoderGetBitpoolSize,
306 aBitpoolSize = sizeBuffer();
313 TInt CMMFSbcEncoderMux::GetChannelMode(TSbcChannelMode& aChannelMode)
315 TInt err = KErrNotReady;
316 if (iRemoteHandle > 0)
318 TPckgBuf<TSbcChannelMode> channelModeBuffer;
319 err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
320 EMMFDevSoundCISbcEncoderGetChannelMode,
325 aChannelMode = channelModeBuffer();
332 /********************************************************************************/
333 TInt CMMFSbcEncoderMux::GetSupportedSamplingFrequencies (RArray<TUint>& aSamplingFrequencies )
335 TInt err = KErrNotReady;
336 if (iRemoteHandle > 0)
339 aSamplingFrequencies.Reset();
342 count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
343 EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount,
351 TRAP(err, DoGetTUintArrayL( aSamplingFrequencies,
353 EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray));
357 // count == 0, nothing to do and no error...
364 /********************************************************************************/
365 TInt CMMFSbcEncoderMux::GetSupportedChannelModes (RArray<TSbcChannelMode>& aChannelModes )
367 TInt err = KErrNotReady;
368 if (iRemoteHandle > 0)
371 aChannelModes.Reset();
374 count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
375 EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount,
383 TRAP(err, DoGetChannelModesArrayL(aChannelModes, count));
387 // count == 0, nothing to do and no error...
394 void CMMFSbcEncoderMux::DoGetChannelModesArrayL(RArray<TSbcChannelMode>& aChannelModes, TInt aCount)
396 // allocate a temporary buffer to hold the channel modes
397 HBufC8* buf = HBufC8::NewLC(aCount * sizeof(TSbcChannelMode));
398 TPtr8 ptr = buf->Des();
400 // fetch the channel modes - but send over the received count to be sure
401 TPckgBuf<TInt> countBuf(aCount);
402 User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
403 EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray,
406 // stream data into the pointer
407 RDesReadStream stream(ptr);
408 CleanupClosePushL(stream);
410 TSbcChannelMode mode;
411 for (TInt i = 0; i < aCount; i++)
413 // note we don't destroy array because we don't own it
414 // but we do reset it as it is incomplete
415 mode = static_cast<TSbcChannelMode>(stream.ReadInt32L());
416 err = aChannelModes.Append(mode);
419 aChannelModes.Reset();
420 User::Leave(KErrCorrupt);
424 CleanupStack::PopAndDestroy(2, buf);// stream, buf
427 /********************************************************************************/
428 TInt CMMFSbcEncoderMux::GetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands )
430 TInt err = KErrNotReady;
431 if (iRemoteHandle > 0)
434 aNumOfSubbands.Reset();
437 count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
438 EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount,
446 TRAP(err, DoGetTUintArrayL(aNumOfSubbands, count, EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray));
450 // count == 0, nothing to do and no error...
458 /********************************************************************************/
459 TInt CMMFSbcEncoderMux::GetSupportedAllocationMethods (RArray<TSbcAllocationMethod>& aAllocationMethods )
461 TInt err = KErrNotReady;
462 if (iRemoteHandle > 0)
465 aAllocationMethods.Reset();
468 count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
469 EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount,
477 TRAP(err, DoGetAllocMethodsArrayL(aAllocationMethods, count));
481 // count == 0, nothing to do and no error...
489 void CMMFSbcEncoderMux::DoGetAllocMethodsArrayL(RArray<TSbcAllocationMethod>& aAllocationMethods, TInt aCount)
491 // allocate a temporary buffer to hold the allocation methods
492 HBufC8* buf = HBufC8::NewLC(aCount * sizeof(TSbcAllocationMethod));
493 TPtr8 ptr = buf->Des();
495 // fetch the allocation methods - but send over the received count to be sure
496 TPckgBuf<TInt> countBuf(aCount);
497 User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
498 EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray,
500 // stream data into the pointer
501 RDesReadStream stream(ptr);
502 CleanupClosePushL(stream);
504 TSbcAllocationMethod mode;
505 for (TInt i = 0; i < aCount; i++)
507 // note we don't destroy array because we don't own it
508 // but we do reset it as it is incomplete
509 mode = static_cast<TSbcAllocationMethod>(stream.ReadInt32L());
510 err = aAllocationMethods.Append(mode);
513 aAllocationMethods.Reset();
514 User::Leave(KErrCorrupt);
518 CleanupStack::PopAndDestroy(2, buf);// stream, buf
521 /********************************************************************************/
522 TInt CMMFSbcEncoderMux::GetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks )
524 TInt err = KErrNotReady;
525 if (iRemoteHandle > 0)
528 aNumOfBlocks.Reset();
531 count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
532 EMMFDevSoundCISbcEncoderGetSupportedBlocksCount,
540 TRAP(err, DoGetTUintArrayL(aNumOfBlocks, count, EMMFDevSoundCISbcEncoderGetSupportedBlocksArray));
544 // count == 0, nothing to do and no error...
552 void CMMFSbcEncoderMux::DoGetTUintArrayL(RArray<TUint>& aArray,
554 TMMFDevSoundCISbcEncoderCommands aCommand)
556 // allocate a temporary buffer to hold the number of blocks
557 HBufC8* buf = HBufC8::NewLC(aCount * sizeof(TInt32));
558 TPtr8 ptr = buf->Des();
560 // fetch the array data for the given command - but send over the received count to be sure
561 TPckgBuf<TInt> countBuf(aCount);
562 User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
566 // stream data into the pointer
567 RDesReadStream stream(ptr);
568 CleanupClosePushL(stream);
570 for (TInt i = 0; i < aCount; i++)
572 err = aArray.Append(stream.ReadUint32L());
575 // note we don't destroy array because we don't own it
576 // but we do reset it as it is incomplete
578 User::Leave(KErrCorrupt);
582 CleanupStack::PopAndDestroy(2, buf);// stream, buf
587 /*****************************************************************************/
588 TInt CMMFSbcEncoderDeMux::OpenInterface(TUid /*aInterfaceId*/)
593 /*****************************************************************************/
594 void CMMFSbcEncoderDeMux::Release()
596 TUid key = iDestructorKey;
600 // tell ECom to destroy us
601 REComSession::DestroyedImplementation(key);
604 /*****************************************************************************/
605 void CMMFSbcEncoderDeMux::PassDestructorKey(TUid aDestructorKey)
607 // store the destructor key
608 iDestructorKey = aDestructorKey;
611 /*****************************************************************************/
612 void CMMFSbcEncoderDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
617 /*****************************************************************************/
618 void CMMFSbcEncoderDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
620 // store a pointer to the utility
621 iUtility = aCustomUtility;
624 /*****************************************************************************/
625 void CMMFSbcEncoderDeMux::RefreshL()
627 // refetch the SBC encoder custom interface if we already have a target
630 MSbcEncoderIntfc* ptr = NULL;
632 ptr = static_cast <MSbcEncoderIntfc*> (iTarget->CustomInterface(KUidSbcEncoderIntfc));
636 iInterfaceSbcEncoder = NULL;
637 User::Leave(KErrNotSupported);
641 iInterfaceSbcEncoder = ptr;
646 /*****************************************************************************/
647 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSbcEncoderDeMux::NewL()
649 CMMFSbcEncoderDeMux* self = new (ELeave) CMMFSbcEncoderDeMux;
653 /*****************************************************************************/
654 CMMFSbcEncoderDeMux::CMMFSbcEncoderDeMux()
658 /*****************************************************************************/
659 CMMFSbcEncoderDeMux::~CMMFSbcEncoderDeMux()
661 // Clear up all the arrays.
662 iSamplingFrequencies.Reset();
663 iSamplingFrequencies.Close();
664 iChannelModes.Reset();
665 iChannelModes.Close();
666 iNumOfSubbands.Reset();
667 iNumOfSubbands.Close();
668 iAllocationMethods.Reset();
669 iAllocationMethods.Close();
670 iNumOfBlocks.Reset();
671 iNumOfBlocks.Close();
674 /*****************************************************************************/
675 TInt CMMFSbcEncoderDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
677 // fetch the SBD encoder Hw Device custom interface
678 MSbcEncoderIntfc* ptr = NULL;
680 ptr = static_cast<MSbcEncoderIntfc*> (iTarget->CustomInterface(KUidSbcEncoderIntfc));
684 iInterfaceSbcEncoder = NULL;
685 User::Leave(KErrNotSupported);
689 iInterfaceSbcEncoder = ptr;
694 /*****************************************************************************/
695 void CMMFSbcEncoderDeMux::DoCloseSlaveL(TInt /*aHandle*/)
700 /*****************************************************************************/
701 // original RMessage is supplied so that remote demux plugin can extract necessary details
702 // using DeMux utility
703 TInt CMMFSbcEncoderDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
705 TMMFDevSoundCIMessageData data;
708 iUtility->GetSyncMessageDataL(aMessage, data);
710 TInt retVal = KErrNone;
711 switch (data.iCommand)
713 case EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount:
715 iSamplingFrequencies.Reset();
716 User::LeaveIfError(DoGetSupportedSamplingFrequencies(iSamplingFrequencies));
717 retVal = iSamplingFrequencies.Count();
720 case EMMFDevSoundCISbcEncoderGetSupportedBlocksCount:
722 iNumOfBlocks.Reset();
723 User::LeaveIfError(DoGetSupportedNumOfBlocks(iNumOfBlocks));
724 retVal = iNumOfBlocks.Count();
727 case EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount:
729 iNumOfSubbands.Reset();
730 User::LeaveIfError(DoGetSupportedNumOfSubbands(iNumOfSubbands));
731 retVal = iNumOfSubbands.Count();
734 case EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount:
736 iChannelModes.Reset();
737 User::LeaveIfError(DoGetSupportedChannelModes(iChannelModes));
738 retVal = iChannelModes.Count();
741 case EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount:
743 iAllocationMethods.Reset();
744 User::LeaveIfError(DoGetSupportedAllocationMethods(iAllocationMethods));
745 retVal = iAllocationMethods.Count();
748 case EMMFDevSoundCISbcEncoderSetSamplingFrequency:
750 TPckgBuf<TUint> freqBuffer;
751 iUtility->ReadFromInputDesL(aMessage, &freqBuffer);
752 DoSetSamplingFrequency(freqBuffer());
755 case EMMFDevSoundCISbcEncoderSetChannelMode:
757 TPckgBuf<MSbcEncoderIntfc::TSbcChannelMode> channelBuffer;
758 iUtility->ReadFromInputDesL(aMessage, &channelBuffer);
759 DoSetChannelMode(channelBuffer());
762 case EMMFDevSoundCISbcEncoderSetSubbands:
764 TPckgBuf<TUint> valueBuffer;
765 iUtility->ReadFromInputDesL(aMessage, &valueBuffer);
766 DoSetNumOfSubbands(valueBuffer());
769 case EMMFDevSoundCISbcEncoderSetBlocks:
771 TPckgBuf<TUint> valueBuffer;
772 iUtility->ReadFromInputDesL(aMessage, &valueBuffer);
773 DoSetNumOfBlocks(valueBuffer());
776 case EMMFDevSoundCISbcEncoderSetBitpoolSize:
778 TPckgBuf<TUint> valueBuffer;
779 iUtility->ReadFromInputDesL(aMessage, &valueBuffer);
780 DoSetBitpoolSize(valueBuffer());
783 case EMMFDevSoundCISbcEncoderSetAllocationMethod:
785 TPckgBuf<MSbcEncoderIntfc::TSbcAllocationMethod> allocationMethodBuffer;
786 iUtility->ReadFromInputDesL(aMessage, &allocationMethodBuffer);
787 DoSetAllocationMethod(allocationMethodBuffer());
790 case EMMFDevSoundCISbcEncoderApplyConfig:
792 retVal = DoApplyConfig();
797 User::Leave(KErrNotSupported);
804 /*****************************************************************************/
805 TInt CMMFSbcEncoderDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
807 TMMFDevSoundCIMessageData data;
810 iUtility->GetSyncMessageDataL(aMessage, data);
812 TInt retVal = KErrNone;
813 switch (data.iCommand)
815 case EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray:
817 // The array will already have been populated by the time this is called
818 // but we can check that the count passed in matches that of the array
819 DoWriteArrayToClientL(aMessage, iSamplingFrequencies);
822 case EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray:
824 // The array will already have been populated by the time this is called
825 // but we can check that the count passed in matches that of the array
826 DoWriteArrayToClientL(aMessage, iNumOfSubbands);
829 case EMMFDevSoundCISbcEncoderGetSupportedBlocksArray:
831 // The array will already have been populated by the time this is called
832 // but we can check that the count passed in matches that of the array
833 DoWriteArrayToClientL(aMessage, iNumOfBlocks);
836 case EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray:
838 // The array will already have been populated by the time this is called
839 // but we can check that the count passed in matches that of the array
840 // Pass ETrue to write out the channel modes array
841 DoWriteArrayToClientL(aMessage, ETrue);
844 case EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray:
846 // The array will already have been populated by the time this is called
847 // but we can check that the count passed in matches that of the array
848 // Pass EFalse for the alloc method array.
849 DoWriteArrayToClientL(aMessage, EFalse);
852 case EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange:
854 TPckgBuf<TBitpoolRange> rangeBuf;
855 DoGetSupportedBitpoolRange(rangeBuf().iMin, rangeBuf().iMax);
856 iUtility->WriteToOutputDesL(aMessage, rangeBuf);
859 case EMMFDevSoundCISbcEncoderGetSamplingFrequency:
861 TPckgBuf<TUint> valueBuf;
862 DoGetSamplingFrequency(valueBuf());
863 iUtility->WriteToOutputDesL(aMessage, valueBuf);
866 case EMMFDevSoundCISbcEncoderGetChannelMode:
868 TPckgBuf<MSbcEncoderIntfc::TSbcChannelMode> channelBuf;
869 DoGetChannelMode(channelBuf());
870 iUtility->WriteToOutputDesL(aMessage, channelBuf);
873 case EMMFDevSoundCISbcEncoderGetSubbands:
875 TPckgBuf<TUint> valueBuf;
876 DoGetNumOfSubbands(valueBuf());
877 iUtility->WriteToOutputDesL(aMessage, valueBuf);
880 case EMMFDevSoundCISbcEncoderGetBlocks:
882 TPckgBuf<TUint> valueBuf;
883 DoGetNumOfBlocks(valueBuf());
884 iUtility->WriteToOutputDesL(aMessage, valueBuf);
887 case EMMFDevSoundCISbcEncoderGetAllocationMethod:
889 TPckgBuf<MSbcEncoderIntfc::TSbcAllocationMethod> allocationMethodBuf;
890 DoGetAllocationMethod(allocationMethodBuf());
891 iUtility->WriteToOutputDesL(aMessage, allocationMethodBuf);
894 case EMMFDevSoundCISbcEncoderGetBitpoolSize:
896 TPckgBuf<TUint> valueBuf;
897 DoGetBitpoolSize(valueBuf());
898 iUtility->WriteToOutputDesL(aMessage, valueBuf);
903 User::Leave(KErrNotSupported);
910 /*****************************************************************************/
911 void CMMFSbcEncoderDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
913 // not used in this interface
916 /*****************************************************************************/
917 void CMMFSbcEncoderDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
919 // not used in this interface
922 /*****************************************************************************/
923 // SBC Encoder custom interface implementation
924 TInt CMMFSbcEncoderDeMux::DoGetSupportedSamplingFrequencies(RArray<TUint>& aSamplingFrequencies)
926 TInt err = KErrNotReady;
927 if (iInterfaceSbcEncoder)
929 err = iInterfaceSbcEncoder->GetSupportedSamplingFrequencies(aSamplingFrequencies);
934 TInt CMMFSbcEncoderDeMux::DoGetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands )
936 TInt err = KErrNotReady;
937 if (iInterfaceSbcEncoder)
939 err = iInterfaceSbcEncoder->GetSupportedNumOfSubbands(aNumOfSubbands);
944 TInt CMMFSbcEncoderDeMux::DoGetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks )
946 TInt err = KErrNotReady;
947 if (iInterfaceSbcEncoder)
949 err = iInterfaceSbcEncoder->GetSupportedNumOfBlocks(aNumOfBlocks);
954 TInt CMMFSbcEncoderDeMux::DoGetSupportedChannelModes (RArray<MSbcEncoderIntfc::TSbcChannelMode>& aChannelModes )
956 TInt err = KErrNotReady;
957 if (iInterfaceSbcEncoder)
959 err = iInterfaceSbcEncoder->GetSupportedChannelModes(aChannelModes);
964 TInt CMMFSbcEncoderDeMux::DoGetSupportedAllocationMethods (RArray<MSbcEncoderIntfc::TSbcAllocationMethod>& aAllocationMethods )
966 TInt err = KErrNotReady;
967 if (iInterfaceSbcEncoder)
969 err = iInterfaceSbcEncoder->GetSupportedAllocationMethods(aAllocationMethods);
974 TInt CMMFSbcEncoderDeMux::DoGetSupportedBitpoolRange (TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize)
976 TInt err = KErrNotReady;
977 if (iInterfaceSbcEncoder)
979 err = iInterfaceSbcEncoder->GetSupportedBitpoolRange(aMinSupportedBitpoolSize, aMaxSupportedBitpoolSize);
984 void CMMFSbcEncoderDeMux::DoSetSamplingFrequency (TUint aSamplingFrequency )
986 if (iInterfaceSbcEncoder)
988 iInterfaceSbcEncoder->SetSamplingFrequency(aSamplingFrequency);
992 void CMMFSbcEncoderDeMux::DoSetChannelMode (MSbcEncoderIntfc::TSbcChannelMode aChannelMode )
994 if (iInterfaceSbcEncoder)
996 iInterfaceSbcEncoder->SetChannelMode(aChannelMode);
1000 void CMMFSbcEncoderDeMux::DoSetNumOfSubbands (TUint aNumOfSubbands)
1002 if (iInterfaceSbcEncoder)
1004 iInterfaceSbcEncoder->SetNumOfSubbands(aNumOfSubbands);
1008 void CMMFSbcEncoderDeMux::DoSetNumOfBlocks (TUint aNumOfBlocks)
1010 if (iInterfaceSbcEncoder)
1012 iInterfaceSbcEncoder->SetNumOfBlocks(aNumOfBlocks);
1016 void CMMFSbcEncoderDeMux::DoSetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod aAllocationMethod)
1018 if (iInterfaceSbcEncoder)
1020 iInterfaceSbcEncoder->SetAllocationMethod(aAllocationMethod);
1024 void CMMFSbcEncoderDeMux::DoSetBitpoolSize (TUint aBitpoolSize)
1026 if (iInterfaceSbcEncoder)
1028 iInterfaceSbcEncoder->SetBitpoolSize(aBitpoolSize);
1032 TInt CMMFSbcEncoderDeMux::DoApplyConfig()
1034 TInt retVal = KErrNotReady;
1035 if (iInterfaceSbcEncoder)
1037 retVal = iInterfaceSbcEncoder->ApplyConfig();
1042 TInt CMMFSbcEncoderDeMux::DoGetSamplingFrequency(TUint& aSamplingFrequency)
1044 TInt ret = KErrNotReady;
1045 if (iInterfaceSbcEncoder)
1047 ret = iInterfaceSbcEncoder->GetSamplingFrequency(aSamplingFrequency);
1052 TInt CMMFSbcEncoderDeMux::DoGetChannelMode (MSbcEncoderIntfc::TSbcChannelMode& aChannelMode )
1054 if (!iInterfaceSbcEncoder)
1056 return KErrNotReady;
1060 return iInterfaceSbcEncoder->GetChannelMode(aChannelMode);
1064 TInt CMMFSbcEncoderDeMux::DoGetNumOfSubbands (TUint& aNumOfSubbands )
1066 if (!iInterfaceSbcEncoder)
1068 return KErrNotReady;
1072 return iInterfaceSbcEncoder->GetNumOfSubbands(aNumOfSubbands);
1076 TInt CMMFSbcEncoderDeMux::DoGetNumOfBlocks (TUint& aNumOfBlocks )
1078 if (!iInterfaceSbcEncoder)
1080 return KErrNotReady;
1084 return iInterfaceSbcEncoder->GetNumOfBlocks(aNumOfBlocks);
1088 TInt CMMFSbcEncoderDeMux::DoGetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod& aAllocationMethod )
1090 if (!iInterfaceSbcEncoder)
1092 return KErrNotReady;
1096 return iInterfaceSbcEncoder->GetAllocationMethod(aAllocationMethod);
1100 TInt CMMFSbcEncoderDeMux::DoGetBitpoolSize(TUint& aBitpoolSize)
1102 if (!iInterfaceSbcEncoder)
1104 return KErrNotReady;
1108 return iInterfaceSbcEncoder->GetBitpoolSize(aBitpoolSize);
1112 // This is a utility method used by each of the TUint parametered methods to write their arrays
1113 // back to the client (using aMessage)
1114 void CMMFSbcEncoderDeMux::DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, RArray<TUint>& aArray)
1116 // The message already contains the array count so retrieve it
1117 // and verify that nothing's awry.
1118 TPckgBuf<TInt> countBuf;
1119 iUtility->ReadFromInputDesL(aMessage, &countBuf);
1120 TInt count = countBuf();
1121 if (count != aArray.Count())
1123 User::Leave(KErrCorrupt);
1125 // Create a suitably sized buffer
1126 HBufC8* buf = HBufC8::NewLC(count * sizeof(TUint));
1127 TPtr8 ptr = buf->Des();
1128 RDesWriteStream stream(ptr);
1129 CleanupClosePushL(stream);
1130 // Stream the array data
1131 for (TInt i = 0; i < count; i++)
1133 stream.WriteUint32L(aArray[i]);
1135 // Commit the data to the stream
1137 // Write the buffer back to the mux
1138 iUtility->WriteToOutputDesL(aMessage, *buf);
1139 CleanupStack::PopAndDestroy(2, buf); // stream, buf
1142 void CMMFSbcEncoderDeMux::DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, TBool aWriteChannelModeArray)
1144 // The message already contains the array count so retrieve it
1145 // and verify that nothing's awry.
1146 TPckgBuf<TInt> countBuf;
1147 iUtility->ReadFromInputDesL(aMessage, &countBuf);
1148 TInt count = countBuf();
1149 TInt arrayCount = 0;
1151 if (aWriteChannelModeArray)
1153 arrayCount = iChannelModes.Count();
1157 arrayCount = iAllocationMethods.Count();
1160 if (count != arrayCount)
1162 User::Leave(KErrCorrupt);
1165 // Create a suitably sized buffer
1166 HBufC8* buf = HBufC8::NewLC(count * sizeof(TUint));
1167 TPtr8 ptr = buf->Des();
1168 RDesWriteStream stream(ptr);
1169 CleanupClosePushL(stream);
1170 // Stream the array data
1171 if (aWriteChannelModeArray)
1173 for (TInt i = 0; i < count; i++)
1175 stream.WriteUint32L(iChannelModes[i]);
1181 for (TInt i = 0; i < count; i++)
1183 stream.WriteUint32L(iAllocationMethods[i]);
1187 // Commit the data to the stream
1189 // Write the buffer back to the mux
1190 iUtility->WriteToOutputDesL(aMessage, *buf);
1191 CleanupStack::PopAndDestroy(2, buf); // stream, buf
1194 /*****************************************************************************/
1196 // ImplementationTable
1199 const TImplementationProxy ImplementationTable[] =
1201 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSbcEncoderMux, CMMFSbcEncoderMux::NewL),
1202 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSbcEncoderDeMux, CMMFSbcEncoderDeMux::NewL),
1205 /*****************************************************************************/
1207 // ImplementationGroupProxy
1211 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1213 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1215 return ImplementationTable;