1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/sbcencoderci.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1216 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <ecom/implementationproxy.h>
1.20 +#include <ecom/implementationproxy.h>
1.21 +#include <ecom/ecom.h>
1.22 +#include <s32mem.h>
1.23 +
1.24 +#include "sbcencoderci.h"
1.25 +
1.26 +class TBitpoolRange
1.27 + {
1.28 +public:
1.29 + TUint iMin;
1.30 + TUint iMax;
1.31 + };
1.32 +
1.33 +
1.34 +// MUX //
1.35 +/*****************************************************************************/
1.36 +
1.37 +TInt CMMFSbcEncoderMux::OpenInterface(TUid /*aInterfaceId*/)
1.38 + {
1.39 + // attempt to open the interface link with the
1.40 + // remote slave device
1.41 + iRemoteHandle = -1;
1.42 + TUid slaveId = {KMmfUidCustomInterfaceSbcEncoderDeMux};
1.43 +
1.44 + TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
1.45 + if (handle >= 0)
1.46 + {
1.47 + iRemoteHandle = handle;
1.48 + }
1.49 +
1.50 + return iRemoteHandle;
1.51 + }
1.52 +
1.53 +/*****************************************************************************/
1.54 +void CMMFSbcEncoderMux::Release()
1.55 + {
1.56 + // close the slave device if it exists
1.57 + if (iRemoteHandle > 0)
1.58 + {
1.59 + // we assume the slave is closed correctly
1.60 + iUtility->CloseSlave(iRemoteHandle);
1.61 + }
1.62 +
1.63 + TUid key = iDestructorKey;
1.64 + delete this;
1.65 +
1.66 + // tell ECom to destroy us
1.67 + REComSession::DestroyedImplementation(key);
1.68 + }
1.69 +
1.70 +/*****************************************************************************/
1.71 +void CMMFSbcEncoderMux::PassDestructorKey(TUid aDestructorKey)
1.72 + {
1.73 + // store the destructor key
1.74 + iDestructorKey = aDestructorKey;
1.75 + }
1.76 +
1.77 +/*****************************************************************************/
1.78 +void CMMFSbcEncoderMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
1.79 + {
1.80 + // store a pointer to the utility
1.81 + iUtility = aCustomUtility;
1.82 + }
1.83 +
1.84 +/*****************************************************************************/
1.85 +MMMFDevSoundCustomInterfaceMuxPlugin* CMMFSbcEncoderMux::NewL()
1.86 + {
1.87 + CMMFSbcEncoderMux* self = new (ELeave) CMMFSbcEncoderMux;
1.88 + return self;
1.89 + }
1.90 +
1.91 +/*****************************************************************************/
1.92 +TAny* CMMFSbcEncoderMux::CustomInterface(TUid /*aInterfaceId*/)
1.93 + {
1.94 + MSbcEncoderIntfc* interface = this;
1.95 + return interface;
1.96 + }
1.97 +
1.98 +/*****************************************************************************/
1.99 +CMMFSbcEncoderMux::CMMFSbcEncoderMux() :
1.100 + iRemoteHandle(-1)
1.101 + {
1.102 + }
1.103 +
1.104 +/*****************************************************************************/
1.105 +CMMFSbcEncoderMux::~CMMFSbcEncoderMux()
1.106 + {
1.107 + }
1.108 +
1.109 +/*****************************************************************************/
1.110 +// from MSbcEncoderIntfc
1.111 +TInt CMMFSbcEncoderMux::GetSupportedBitpoolRange(TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize)
1.112 + {
1.113 + TInt err = KErrNotReady;
1.114 + if (iRemoteHandle > 0)
1.115 + {
1.116 + TBitpoolRange range;
1.117 + range.iMax = 0;
1.118 + range.iMin = 0;
1.119 + TPckgBuf<TBitpoolRange> rangeBuffer(range);
1.120 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.121 + EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange,
1.122 + KNullDesC8,
1.123 + rangeBuffer);
1.124 + if (err == KErrNone)
1.125 + {
1.126 + aMinSupportedBitpoolSize = rangeBuffer().iMin;
1.127 + aMaxSupportedBitpoolSize = rangeBuffer().iMax;
1.128 + }
1.129 + }
1.130 + return err;
1.131 + }
1.132 +
1.133 +void CMMFSbcEncoderMux::SetSamplingFrequency(TUint aSamplingFrequency)
1.134 + {
1.135 + if (iRemoteHandle > 0)
1.136 + {
1.137 + // send the frequency in the sync command
1.138 + TPckgBuf<TUint> freqBuffer(aSamplingFrequency);
1.139 + // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
1.140 + iUtility->SendSlaveSyncCommand( iRemoteHandle,
1.141 + EMMFDevSoundCISbcEncoderSetSamplingFrequency,
1.142 + freqBuffer);
1.143 + }
1.144 + }
1.145 +
1.146 +void CMMFSbcEncoderMux::SetChannelMode (TSbcChannelMode aChannelMode)
1.147 + {
1.148 + if (iRemoteHandle > 0)
1.149 + {
1.150 + // send the channel mode in the sync command
1.151 + TPckgBuf<MSbcEncoderIntfc::TSbcChannelMode> channelModeBuffer(aChannelMode);
1.152 + // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
1.153 + iUtility->SendSlaveSyncCommand( iRemoteHandle,
1.154 + EMMFDevSoundCISbcEncoderSetChannelMode,
1.155 + channelModeBuffer);
1.156 + }
1.157 + }
1.158 +
1.159 +void CMMFSbcEncoderMux::SetNumOfSubbands ( TUint aNumOfSubbands )
1.160 + {
1.161 + if (iRemoteHandle > 0)
1.162 + {
1.163 + // send the number of subbands in the sync command
1.164 + TPckgBuf<TUint> numBuffer(aNumOfSubbands);
1.165 + // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
1.166 + iUtility->SendSlaveSyncCommand( iRemoteHandle,
1.167 + EMMFDevSoundCISbcEncoderSetSubbands,
1.168 + numBuffer);
1.169 + }
1.170 + }
1.171 +
1.172 +void CMMFSbcEncoderMux::SetNumOfBlocks ( TUint aNumOfBlocks )
1.173 + {
1.174 + if (iRemoteHandle > 0)
1.175 + {
1.176 + // send the number of blocks in the sync command
1.177 + TPckgBuf<TUint> blocksBuffer(aNumOfBlocks);
1.178 + // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
1.179 + iUtility->SendSlaveSyncCommand( iRemoteHandle,
1.180 + EMMFDevSoundCISbcEncoderSetBlocks,
1.181 + blocksBuffer);
1.182 + }
1.183 + }
1.184 +
1.185 +void CMMFSbcEncoderMux::SetAllocationMethod (TSbcAllocationMethod aAllocationMethod )
1.186 + {
1.187 + if (iRemoteHandle > 0)
1.188 + {
1.189 + // send the allocation method in the sync command
1.190 + TPckgBuf<TSbcAllocationMethod> allocMethodBuffer(aAllocationMethod);
1.191 + // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
1.192 + iUtility->SendSlaveSyncCommand( iRemoteHandle,
1.193 + EMMFDevSoundCISbcEncoderSetAllocationMethod,
1.194 + allocMethodBuffer);
1.195 + }
1.196 + }
1.197 +
1.198 +void CMMFSbcEncoderMux::SetBitpoolSize (TUint aBitpoolSize )
1.199 + {
1.200 + if (iRemoteHandle > 0)
1.201 + {
1.202 + // send the bitpool size in the sync command
1.203 + TPckgBuf<TUint> sizeBuffer(aBitpoolSize);
1.204 + // No way of reporting an error message so ignore the return value from SendSlaveSyncCommand
1.205 + iUtility->SendSlaveSyncCommand( iRemoteHandle,
1.206 + EMMFDevSoundCISbcEncoderSetBitpoolSize,
1.207 + sizeBuffer);
1.208 + }
1.209 + }
1.210 +
1.211 +TInt CMMFSbcEncoderMux::ApplyConfig()
1.212 + {
1.213 + TInt err = KErrNotReady;
1.214 + if (iRemoteHandle > 0)
1.215 + {
1.216 + err = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.217 + EMMFDevSoundCISbcEncoderApplyConfig,
1.218 + KNullDesC8);
1.219 + }
1.220 + return err;
1.221 + }
1.222 +
1.223 +TInt CMMFSbcEncoderMux::GetSamplingFrequency(TUint& aSamplingFrequency)
1.224 + {
1.225 + TInt err = KErrNotReady;
1.226 +
1.227 + if (iRemoteHandle > 0)
1.228 + {
1.229 + TPckgBuf<TUint> freqBuffer;
1.230 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.231 + EMMFDevSoundCISbcEncoderGetSamplingFrequency,
1.232 + KNullDesC8,
1.233 + freqBuffer);
1.234 + if (err == KErrNone)
1.235 + {
1.236 + aSamplingFrequency = freqBuffer();
1.237 + }
1.238 + }
1.239 +
1.240 + return err;
1.241 + }
1.242 +
1.243 +TInt CMMFSbcEncoderMux::GetNumOfSubbands (TUint& aNumOfSubbands )
1.244 + {
1.245 + TInt err = KErrNotReady;
1.246 + if (iRemoteHandle > 0)
1.247 + {
1.248 + TPckgBuf<TUint> sizeBuffer;
1.249 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.250 + EMMFDevSoundCISbcEncoderGetSubbands,
1.251 + KNullDesC8,
1.252 + sizeBuffer);
1.253 + if (err == KErrNone)
1.254 + {
1.255 + aNumOfSubbands = sizeBuffer();
1.256 + }
1.257 + }
1.258 + return err;
1.259 + }
1.260 +
1.261 +TInt CMMFSbcEncoderMux::GetNumOfBlocks (TUint& aNumOfBlocks )
1.262 + {
1.263 + TInt err = KErrNotReady;
1.264 + if (iRemoteHandle > 0)
1.265 + {
1.266 + TPckgBuf<TUint> blocksBuffer;
1.267 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.268 + EMMFDevSoundCISbcEncoderGetBlocks,
1.269 + KNullDesC8,
1.270 + blocksBuffer);
1.271 + if (err == KErrNone)
1.272 + {
1.273 + aNumOfBlocks = blocksBuffer();
1.274 + }
1.275 + }
1.276 + return err;
1.277 + }
1.278 +
1.279 +TInt CMMFSbcEncoderMux::GetAllocationMethod (TSbcAllocationMethod& aAllocationMethod )
1.280 + {
1.281 + TInt err = KErrNotReady;
1.282 + if (iRemoteHandle > 0)
1.283 + {
1.284 + TPckgBuf<TSbcAllocationMethod> allocMethodBuffer;
1.285 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.286 + EMMFDevSoundCISbcEncoderGetAllocationMethod,
1.287 + KNullDesC8,
1.288 + allocMethodBuffer);
1.289 + if (err == KErrNone)
1.290 + {
1.291 + aAllocationMethod = allocMethodBuffer();
1.292 + }
1.293 + }
1.294 + return err;
1.295 + }
1.296 +
1.297 +TInt CMMFSbcEncoderMux::GetBitpoolSize (TUint& aBitpoolSize )
1.298 + {
1.299 + TInt err = KErrNotReady;
1.300 + if (iRemoteHandle > 0)
1.301 + {
1.302 + TPckgBuf<TUint> sizeBuffer;
1.303 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.304 + EMMFDevSoundCISbcEncoderGetBitpoolSize,
1.305 + KNullDesC8,
1.306 + sizeBuffer);
1.307 + if (err == KErrNone)
1.308 + {
1.309 + aBitpoolSize = sizeBuffer();
1.310 + }
1.311 + }
1.312 +
1.313 + return err;
1.314 + }
1.315 +
1.316 +TInt CMMFSbcEncoderMux::GetChannelMode(TSbcChannelMode& aChannelMode)
1.317 + {
1.318 + TInt err = KErrNotReady;
1.319 + if (iRemoteHandle > 0)
1.320 + {
1.321 + TPckgBuf<TSbcChannelMode> channelModeBuffer;
1.322 + err = iUtility->SendSlaveSyncCommandResult( iRemoteHandle,
1.323 + EMMFDevSoundCISbcEncoderGetChannelMode,
1.324 + KNullDesC8,
1.325 + channelModeBuffer);
1.326 + if (err == KErrNone)
1.327 + {
1.328 + aChannelMode = channelModeBuffer();
1.329 + }
1.330 + }
1.331 +
1.332 + return err;
1.333 + }
1.334 +
1.335 +/********************************************************************************/
1.336 +TInt CMMFSbcEncoderMux::GetSupportedSamplingFrequencies (RArray<TUint>& aSamplingFrequencies )
1.337 + {
1.338 + TInt err = KErrNotReady;
1.339 + if (iRemoteHandle > 0)
1.340 + {
1.341 + // Clear the array
1.342 + aSamplingFrequencies.Reset();
1.343 + // Fetch the count
1.344 + TInt count = -1;
1.345 + count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.346 + EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount,
1.347 + KNullDesC8);
1.348 + if (count < 0)
1.349 + {
1.350 + err = count;
1.351 + }
1.352 + else if (count > 0)
1.353 + {
1.354 + TRAP(err, DoGetTUintArrayL( aSamplingFrequencies,
1.355 + count,
1.356 + EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray));
1.357 + }
1.358 + else
1.359 + {
1.360 + // count == 0, nothing to do and no error...
1.361 + err = KErrNone;
1.362 + }
1.363 + }
1.364 + return err;
1.365 + }
1.366 +
1.367 +/********************************************************************************/
1.368 +TInt CMMFSbcEncoderMux::GetSupportedChannelModes (RArray<TSbcChannelMode>& aChannelModes )
1.369 + {
1.370 + TInt err = KErrNotReady;
1.371 + if (iRemoteHandle > 0)
1.372 + {
1.373 + // Clear the array
1.374 + aChannelModes.Reset();
1.375 + // Fetch the count
1.376 + TInt count = -1;
1.377 + count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.378 + EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount,
1.379 + KNullDesC8);
1.380 + if (count < 0)
1.381 + {
1.382 + err = count;
1.383 + }
1.384 + else if (count > 0)
1.385 + {
1.386 + TRAP(err, DoGetChannelModesArrayL(aChannelModes, count));
1.387 + }
1.388 + else
1.389 + {
1.390 + // count == 0, nothing to do and no error...
1.391 + err = KErrNone;
1.392 + }
1.393 + }
1.394 + return err;
1.395 + }
1.396 +
1.397 +void CMMFSbcEncoderMux::DoGetChannelModesArrayL(RArray<TSbcChannelMode>& aChannelModes, TInt aCount)
1.398 + {
1.399 + // allocate a temporary buffer to hold the channel modes
1.400 + HBufC8* buf = HBufC8::NewLC(aCount * sizeof(TSbcChannelMode));
1.401 + TPtr8 ptr = buf->Des();
1.402 +
1.403 + // fetch the channel modes - but send over the received count to be sure
1.404 + TPckgBuf<TInt> countBuf(aCount);
1.405 + User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
1.406 + EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray,
1.407 + countBuf, ptr));
1.408 +
1.409 + // stream data into the pointer
1.410 + RDesReadStream stream(ptr);
1.411 + CleanupClosePushL(stream);
1.412 + TInt err = KErrNone;
1.413 + TSbcChannelMode mode;
1.414 + for (TInt i = 0; i < aCount; i++)
1.415 + {
1.416 + // note we don't destroy array because we don't own it
1.417 + // but we do reset it as it is incomplete
1.418 + mode = static_cast<TSbcChannelMode>(stream.ReadInt32L());
1.419 + err = aChannelModes.Append(mode);
1.420 + if (err != KErrNone)
1.421 + {
1.422 + aChannelModes.Reset();
1.423 + User::Leave(KErrCorrupt);
1.424 + }
1.425 + }
1.426 +
1.427 + CleanupStack::PopAndDestroy(2, buf);// stream, buf
1.428 + }
1.429 +
1.430 +/********************************************************************************/
1.431 +TInt CMMFSbcEncoderMux::GetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands )
1.432 + {
1.433 + TInt err = KErrNotReady;
1.434 + if (iRemoteHandle > 0)
1.435 + {
1.436 + // Clear the array
1.437 + aNumOfSubbands.Reset();
1.438 + // Fetch the count
1.439 + TInt count = -1;
1.440 + count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.441 + EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount,
1.442 + KNullDesC8);
1.443 + if (count < 0)
1.444 + {
1.445 + err = count;
1.446 + }
1.447 + else if (count > 0)
1.448 + {
1.449 + TRAP(err, DoGetTUintArrayL(aNumOfSubbands, count, EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray));
1.450 + }
1.451 + else
1.452 + {
1.453 + // count == 0, nothing to do and no error...
1.454 + err = KErrNone;
1.455 + }
1.456 + }
1.457 +
1.458 + return err;
1.459 + }
1.460 +
1.461 +/********************************************************************************/
1.462 +TInt CMMFSbcEncoderMux::GetSupportedAllocationMethods (RArray<TSbcAllocationMethod>& aAllocationMethods )
1.463 + {
1.464 + TInt err = KErrNotReady;
1.465 + if (iRemoteHandle > 0)
1.466 + {
1.467 + // Clear the array
1.468 + aAllocationMethods.Reset();
1.469 + // Fetch the count
1.470 + TInt count = -1;
1.471 + count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.472 + EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount,
1.473 + KNullDesC8);
1.474 + if (count < 0)
1.475 + {
1.476 + err = count;
1.477 + }
1.478 + else if (count > 0)
1.479 + {
1.480 + TRAP(err, DoGetAllocMethodsArrayL(aAllocationMethods, count));
1.481 + }
1.482 + else
1.483 + {
1.484 + // count == 0, nothing to do and no error...
1.485 + err = KErrNone;
1.486 + }
1.487 + }
1.488 +
1.489 + return err;
1.490 + }
1.491 +
1.492 +void CMMFSbcEncoderMux::DoGetAllocMethodsArrayL(RArray<TSbcAllocationMethod>& aAllocationMethods, TInt aCount)
1.493 + {
1.494 + // allocate a temporary buffer to hold the allocation methods
1.495 + HBufC8* buf = HBufC8::NewLC(aCount * sizeof(TSbcAllocationMethod));
1.496 + TPtr8 ptr = buf->Des();
1.497 +
1.498 + // fetch the allocation methods - but send over the received count to be sure
1.499 + TPckgBuf<TInt> countBuf(aCount);
1.500 + User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
1.501 + EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray,
1.502 + countBuf, ptr));
1.503 + // stream data into the pointer
1.504 + RDesReadStream stream(ptr);
1.505 + CleanupClosePushL(stream);
1.506 + TInt err = KErrNone;
1.507 + TSbcAllocationMethod mode;
1.508 + for (TInt i = 0; i < aCount; i++)
1.509 + {
1.510 + // note we don't destroy array because we don't own it
1.511 + // but we do reset it as it is incomplete
1.512 + mode = static_cast<TSbcAllocationMethod>(stream.ReadInt32L());
1.513 + err = aAllocationMethods.Append(mode);
1.514 + if (err != KErrNone)
1.515 + {
1.516 + aAllocationMethods.Reset();
1.517 + User::Leave(KErrCorrupt);
1.518 + }
1.519 + }
1.520 +
1.521 + CleanupStack::PopAndDestroy(2, buf);// stream, buf
1.522 + }
1.523 +
1.524 +/********************************************************************************/
1.525 +TInt CMMFSbcEncoderMux::GetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks )
1.526 + {
1.527 + TInt err = KErrNotReady;
1.528 + if (iRemoteHandle > 0)
1.529 + {
1.530 + // Clear the array
1.531 + aNumOfBlocks.Reset();
1.532 + // Fetch the count
1.533 + TInt count = -1;
1.534 + count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.535 + EMMFDevSoundCISbcEncoderGetSupportedBlocksCount,
1.536 + KNullDesC8);
1.537 + if (count < 0)
1.538 + {
1.539 + err = count;
1.540 + }
1.541 + else if (count > 0)
1.542 + {
1.543 + TRAP(err, DoGetTUintArrayL(aNumOfBlocks, count, EMMFDevSoundCISbcEncoderGetSupportedBlocksArray));
1.544 + }
1.545 + else
1.546 + {
1.547 + // count == 0, nothing to do and no error...
1.548 + err = KErrNone;
1.549 + }
1.550 + }
1.551 +
1.552 + return err;
1.553 + }
1.554 +
1.555 +void CMMFSbcEncoderMux::DoGetTUintArrayL(RArray<TUint>& aArray,
1.556 + TInt aCount,
1.557 + TMMFDevSoundCISbcEncoderCommands aCommand)
1.558 + {
1.559 + // allocate a temporary buffer to hold the number of blocks
1.560 + HBufC8* buf = HBufC8::NewLC(aCount * sizeof(TInt32));
1.561 + TPtr8 ptr = buf->Des();
1.562 +
1.563 + // fetch the array data for the given command - but send over the received count to be sure
1.564 + TPckgBuf<TInt> countBuf(aCount);
1.565 + User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
1.566 + aCommand,
1.567 + countBuf, ptr));
1.568 +
1.569 + // stream data into the pointer
1.570 + RDesReadStream stream(ptr);
1.571 + CleanupClosePushL(stream);
1.572 + TInt err = KErrNone;
1.573 + for (TInt i = 0; i < aCount; i++)
1.574 + {
1.575 + err = aArray.Append(stream.ReadUint32L());
1.576 + if (err != KErrNone)
1.577 + {
1.578 + // note we don't destroy array because we don't own it
1.579 + // but we do reset it as it is incomplete
1.580 + aArray.Reset();
1.581 + User::Leave(KErrCorrupt);
1.582 + }
1.583 + }
1.584 +
1.585 + CleanupStack::PopAndDestroy(2, buf);// stream, buf
1.586 + }
1.587 +
1.588 +
1.589 +// DEMUX //
1.590 +/*****************************************************************************/
1.591 +TInt CMMFSbcEncoderDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.592 + {
1.593 + return KErrNone;
1.594 + }
1.595 +
1.596 +/*****************************************************************************/
1.597 +void CMMFSbcEncoderDeMux::Release()
1.598 + {
1.599 + TUid key = iDestructorKey;
1.600 +
1.601 + delete this;
1.602 +
1.603 + // tell ECom to destroy us
1.604 + REComSession::DestroyedImplementation(key);
1.605 + }
1.606 +
1.607 +/*****************************************************************************/
1.608 +void CMMFSbcEncoderDeMux::PassDestructorKey(TUid aDestructorKey)
1.609 + {
1.610 + // store the destructor key
1.611 + iDestructorKey = aDestructorKey;
1.612 + }
1.613 +
1.614 +/*****************************************************************************/
1.615 +void CMMFSbcEncoderDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.616 + {
1.617 + iTarget = aTarget;
1.618 + }
1.619 +
1.620 +/*****************************************************************************/
1.621 +void CMMFSbcEncoderDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.622 + {
1.623 + // store a pointer to the utility
1.624 + iUtility = aCustomUtility;
1.625 + }
1.626 +
1.627 +/*****************************************************************************/
1.628 +void CMMFSbcEncoderDeMux::RefreshL()
1.629 + {
1.630 + // refetch the SBC encoder custom interface if we already have a target
1.631 + if (iTarget)
1.632 + {
1.633 + MSbcEncoderIntfc* ptr = NULL;
1.634 +
1.635 + ptr = static_cast <MSbcEncoderIntfc*> (iTarget->CustomInterface(KUidSbcEncoderIntfc));
1.636 +
1.637 + if (!ptr)
1.638 + {
1.639 + iInterfaceSbcEncoder = NULL;
1.640 + User::Leave(KErrNotSupported);
1.641 + }
1.642 + else
1.643 + {
1.644 + iInterfaceSbcEncoder = ptr;
1.645 + }
1.646 + }
1.647 + }
1.648 +
1.649 +/*****************************************************************************/
1.650 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSbcEncoderDeMux::NewL()
1.651 + {
1.652 + CMMFSbcEncoderDeMux* self = new (ELeave) CMMFSbcEncoderDeMux;
1.653 + return self;
1.654 + }
1.655 +
1.656 +/*****************************************************************************/
1.657 +CMMFSbcEncoderDeMux::CMMFSbcEncoderDeMux()
1.658 + {
1.659 + }
1.660 +
1.661 +/*****************************************************************************/
1.662 +CMMFSbcEncoderDeMux::~CMMFSbcEncoderDeMux()
1.663 + {
1.664 + // Clear up all the arrays.
1.665 + iSamplingFrequencies.Reset();
1.666 + iSamplingFrequencies.Close();
1.667 + iChannelModes.Reset();
1.668 + iChannelModes.Close();
1.669 + iNumOfSubbands.Reset();
1.670 + iNumOfSubbands.Close();
1.671 + iAllocationMethods.Reset();
1.672 + iAllocationMethods.Close();
1.673 + iNumOfBlocks.Reset();
1.674 + iNumOfBlocks.Close();
1.675 + }
1.676 +
1.677 +/*****************************************************************************/
1.678 +TInt CMMFSbcEncoderDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.679 + {
1.680 + // fetch the SBD encoder Hw Device custom interface
1.681 + MSbcEncoderIntfc* ptr = NULL;
1.682 +
1.683 + ptr = static_cast<MSbcEncoderIntfc*> (iTarget->CustomInterface(KUidSbcEncoderIntfc));
1.684 +
1.685 + if (!ptr)
1.686 + {
1.687 + iInterfaceSbcEncoder = NULL;
1.688 + User::Leave(KErrNotSupported);
1.689 + }
1.690 + else
1.691 + {
1.692 + iInterfaceSbcEncoder = ptr;
1.693 + }
1.694 + return KErrNone;
1.695 + }
1.696 +
1.697 +/*****************************************************************************/
1.698 +void CMMFSbcEncoderDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.699 + {
1.700 + // nothing to do
1.701 + }
1.702 +
1.703 +/*****************************************************************************/
1.704 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.705 +// using DeMux utility
1.706 +TInt CMMFSbcEncoderDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.707 + {
1.708 + TMMFDevSoundCIMessageData data;
1.709 +
1.710 + // decode message
1.711 + iUtility->GetSyncMessageDataL(aMessage, data);
1.712 +
1.713 + TInt retVal = KErrNone;
1.714 + switch (data.iCommand)
1.715 + {
1.716 + case EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount:
1.717 + {
1.718 + iSamplingFrequencies.Reset();
1.719 + User::LeaveIfError(DoGetSupportedSamplingFrequencies(iSamplingFrequencies));
1.720 + retVal = iSamplingFrequencies.Count();
1.721 + break;
1.722 + }
1.723 + case EMMFDevSoundCISbcEncoderGetSupportedBlocksCount:
1.724 + {
1.725 + iNumOfBlocks.Reset();
1.726 + User::LeaveIfError(DoGetSupportedNumOfBlocks(iNumOfBlocks));
1.727 + retVal = iNumOfBlocks.Count();
1.728 + break;
1.729 + }
1.730 + case EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount:
1.731 + {
1.732 + iNumOfSubbands.Reset();
1.733 + User::LeaveIfError(DoGetSupportedNumOfSubbands(iNumOfSubbands));
1.734 + retVal = iNumOfSubbands.Count();
1.735 + break;
1.736 + }
1.737 + case EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount:
1.738 + {
1.739 + iChannelModes.Reset();
1.740 + User::LeaveIfError(DoGetSupportedChannelModes(iChannelModes));
1.741 + retVal = iChannelModes.Count();
1.742 + break;
1.743 + }
1.744 + case EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount:
1.745 + {
1.746 + iAllocationMethods.Reset();
1.747 + User::LeaveIfError(DoGetSupportedAllocationMethods(iAllocationMethods));
1.748 + retVal = iAllocationMethods.Count();
1.749 + break;
1.750 + }
1.751 + case EMMFDevSoundCISbcEncoderSetSamplingFrequency:
1.752 + {
1.753 + TPckgBuf<TUint> freqBuffer;
1.754 + iUtility->ReadFromInputDesL(aMessage, &freqBuffer);
1.755 + DoSetSamplingFrequency(freqBuffer());
1.756 + break;
1.757 + }
1.758 + case EMMFDevSoundCISbcEncoderSetChannelMode:
1.759 + {
1.760 + TPckgBuf<MSbcEncoderIntfc::TSbcChannelMode> channelBuffer;
1.761 + iUtility->ReadFromInputDesL(aMessage, &channelBuffer);
1.762 + DoSetChannelMode(channelBuffer());
1.763 + break;
1.764 + }
1.765 + case EMMFDevSoundCISbcEncoderSetSubbands:
1.766 + {
1.767 + TPckgBuf<TUint> valueBuffer;
1.768 + iUtility->ReadFromInputDesL(aMessage, &valueBuffer);
1.769 + DoSetNumOfSubbands(valueBuffer());
1.770 + break;
1.771 + }
1.772 + case EMMFDevSoundCISbcEncoderSetBlocks:
1.773 + {
1.774 + TPckgBuf<TUint> valueBuffer;
1.775 + iUtility->ReadFromInputDesL(aMessage, &valueBuffer);
1.776 + DoSetNumOfBlocks(valueBuffer());
1.777 + break;
1.778 + }
1.779 + case EMMFDevSoundCISbcEncoderSetBitpoolSize:
1.780 + {
1.781 + TPckgBuf<TUint> valueBuffer;
1.782 + iUtility->ReadFromInputDesL(aMessage, &valueBuffer);
1.783 + DoSetBitpoolSize(valueBuffer());
1.784 + break;
1.785 + }
1.786 + case EMMFDevSoundCISbcEncoderSetAllocationMethod:
1.787 + {
1.788 + TPckgBuf<MSbcEncoderIntfc::TSbcAllocationMethod> allocationMethodBuffer;
1.789 + iUtility->ReadFromInputDesL(aMessage, &allocationMethodBuffer);
1.790 + DoSetAllocationMethod(allocationMethodBuffer());
1.791 + break;
1.792 + }
1.793 + case EMMFDevSoundCISbcEncoderApplyConfig:
1.794 + {
1.795 + retVal = DoApplyConfig();
1.796 + break;
1.797 + }
1.798 + default:
1.799 + {
1.800 + User::Leave(KErrNotSupported);
1.801 + }
1.802 + };
1.803 +
1.804 + return retVal;
1.805 + }
1.806 +
1.807 +/*****************************************************************************/
1.808 +TInt CMMFSbcEncoderDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
1.809 + {
1.810 + TMMFDevSoundCIMessageData data;
1.811 +
1.812 + // decode message
1.813 + iUtility->GetSyncMessageDataL(aMessage, data);
1.814 +
1.815 + TInt retVal = KErrNone;
1.816 + switch (data.iCommand)
1.817 + {
1.818 + case EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray:
1.819 + {
1.820 + // The array will already have been populated by the time this is called
1.821 + // but we can check that the count passed in matches that of the array
1.822 + DoWriteArrayToClientL(aMessage, iSamplingFrequencies);
1.823 + break;
1.824 + }
1.825 + case EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray:
1.826 + {
1.827 + // The array will already have been populated by the time this is called
1.828 + // but we can check that the count passed in matches that of the array
1.829 + DoWriteArrayToClientL(aMessage, iNumOfSubbands);
1.830 + break;
1.831 + }
1.832 + case EMMFDevSoundCISbcEncoderGetSupportedBlocksArray:
1.833 + {
1.834 + // The array will already have been populated by the time this is called
1.835 + // but we can check that the count passed in matches that of the array
1.836 + DoWriteArrayToClientL(aMessage, iNumOfBlocks);
1.837 + break;
1.838 + }
1.839 + case EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray:
1.840 + {
1.841 + // The array will already have been populated by the time this is called
1.842 + // but we can check that the count passed in matches that of the array
1.843 + // Pass ETrue to write out the channel modes array
1.844 + DoWriteArrayToClientL(aMessage, ETrue);
1.845 + break;
1.846 + }
1.847 + case EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray:
1.848 + {
1.849 + // The array will already have been populated by the time this is called
1.850 + // but we can check that the count passed in matches that of the array
1.851 + // Pass EFalse for the alloc method array.
1.852 + DoWriteArrayToClientL(aMessage, EFalse);
1.853 + break;
1.854 + }
1.855 + case EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange:
1.856 + {
1.857 + TPckgBuf<TBitpoolRange> rangeBuf;
1.858 + DoGetSupportedBitpoolRange(rangeBuf().iMin, rangeBuf().iMax);
1.859 + iUtility->WriteToOutputDesL(aMessage, rangeBuf);
1.860 + break;
1.861 + }
1.862 + case EMMFDevSoundCISbcEncoderGetSamplingFrequency:
1.863 + {
1.864 + TPckgBuf<TUint> valueBuf;
1.865 + DoGetSamplingFrequency(valueBuf());
1.866 + iUtility->WriteToOutputDesL(aMessage, valueBuf);
1.867 + break;
1.868 + }
1.869 + case EMMFDevSoundCISbcEncoderGetChannelMode:
1.870 + {
1.871 + TPckgBuf<MSbcEncoderIntfc::TSbcChannelMode> channelBuf;
1.872 + DoGetChannelMode(channelBuf());
1.873 + iUtility->WriteToOutputDesL(aMessage, channelBuf);
1.874 + break;
1.875 + }
1.876 + case EMMFDevSoundCISbcEncoderGetSubbands:
1.877 + {
1.878 + TPckgBuf<TUint> valueBuf;
1.879 + DoGetNumOfSubbands(valueBuf());
1.880 + iUtility->WriteToOutputDesL(aMessage, valueBuf);
1.881 + break;
1.882 + }
1.883 + case EMMFDevSoundCISbcEncoderGetBlocks:
1.884 + {
1.885 + TPckgBuf<TUint> valueBuf;
1.886 + DoGetNumOfBlocks(valueBuf());
1.887 + iUtility->WriteToOutputDesL(aMessage, valueBuf);
1.888 + break;
1.889 + }
1.890 + case EMMFDevSoundCISbcEncoderGetAllocationMethod:
1.891 + {
1.892 + TPckgBuf<MSbcEncoderIntfc::TSbcAllocationMethod> allocationMethodBuf;
1.893 + DoGetAllocationMethod(allocationMethodBuf());
1.894 + iUtility->WriteToOutputDesL(aMessage, allocationMethodBuf);
1.895 + break;
1.896 + }
1.897 + case EMMFDevSoundCISbcEncoderGetBitpoolSize:
1.898 + {
1.899 + TPckgBuf<TUint> valueBuf;
1.900 + DoGetBitpoolSize(valueBuf());
1.901 + iUtility->WriteToOutputDesL(aMessage, valueBuf);
1.902 + break;
1.903 + }
1.904 + default:
1.905 + {
1.906 + User::Leave(KErrNotSupported);
1.907 + }
1.908 + }
1.909 +
1.910 + return retVal;
1.911 + }
1.912 +
1.913 +/*****************************************************************************/
1.914 +void CMMFSbcEncoderDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
1.915 + {
1.916 + // not used in this interface
1.917 + }
1.918 +
1.919 +/*****************************************************************************/
1.920 +void CMMFSbcEncoderDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.921 + {
1.922 + // not used in this interface
1.923 + }
1.924 +
1.925 +/*****************************************************************************/
1.926 +// SBC Encoder custom interface implementation
1.927 +TInt CMMFSbcEncoderDeMux::DoGetSupportedSamplingFrequencies(RArray<TUint>& aSamplingFrequencies)
1.928 + {
1.929 + TInt err = KErrNotReady;
1.930 + if (iInterfaceSbcEncoder)
1.931 + {
1.932 + err = iInterfaceSbcEncoder->GetSupportedSamplingFrequencies(aSamplingFrequencies);
1.933 + }
1.934 + return err;
1.935 + }
1.936 +
1.937 +TInt CMMFSbcEncoderDeMux::DoGetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands )
1.938 + {
1.939 + TInt err = KErrNotReady;
1.940 + if (iInterfaceSbcEncoder)
1.941 + {
1.942 + err = iInterfaceSbcEncoder->GetSupportedNumOfSubbands(aNumOfSubbands);
1.943 + }
1.944 + return err;
1.945 + }
1.946 +
1.947 +TInt CMMFSbcEncoderDeMux::DoGetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks )
1.948 + {
1.949 + TInt err = KErrNotReady;
1.950 + if (iInterfaceSbcEncoder)
1.951 + {
1.952 + err = iInterfaceSbcEncoder->GetSupportedNumOfBlocks(aNumOfBlocks);
1.953 + }
1.954 + return err;
1.955 + }
1.956 +
1.957 +TInt CMMFSbcEncoderDeMux::DoGetSupportedChannelModes (RArray<MSbcEncoderIntfc::TSbcChannelMode>& aChannelModes )
1.958 + {
1.959 + TInt err = KErrNotReady;
1.960 + if (iInterfaceSbcEncoder)
1.961 + {
1.962 + err = iInterfaceSbcEncoder->GetSupportedChannelModes(aChannelModes);
1.963 + }
1.964 + return err;
1.965 + }
1.966 +
1.967 +TInt CMMFSbcEncoderDeMux::DoGetSupportedAllocationMethods (RArray<MSbcEncoderIntfc::TSbcAllocationMethod>& aAllocationMethods )
1.968 + {
1.969 + TInt err = KErrNotReady;
1.970 + if (iInterfaceSbcEncoder)
1.971 + {
1.972 + err = iInterfaceSbcEncoder->GetSupportedAllocationMethods(aAllocationMethods);
1.973 + }
1.974 + return err;
1.975 + }
1.976 +
1.977 +TInt CMMFSbcEncoderDeMux::DoGetSupportedBitpoolRange (TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize)
1.978 + {
1.979 + TInt err = KErrNotReady;
1.980 + if (iInterfaceSbcEncoder)
1.981 + {
1.982 + err = iInterfaceSbcEncoder->GetSupportedBitpoolRange(aMinSupportedBitpoolSize, aMaxSupportedBitpoolSize);
1.983 + }
1.984 + return err;
1.985 + }
1.986 +
1.987 +void CMMFSbcEncoderDeMux::DoSetSamplingFrequency (TUint aSamplingFrequency )
1.988 + {
1.989 + if (iInterfaceSbcEncoder)
1.990 + {
1.991 + iInterfaceSbcEncoder->SetSamplingFrequency(aSamplingFrequency);
1.992 + }
1.993 + }
1.994 +
1.995 +void CMMFSbcEncoderDeMux::DoSetChannelMode (MSbcEncoderIntfc::TSbcChannelMode aChannelMode )
1.996 + {
1.997 + if (iInterfaceSbcEncoder)
1.998 + {
1.999 + iInterfaceSbcEncoder->SetChannelMode(aChannelMode);
1.1000 + }
1.1001 + }
1.1002 +
1.1003 +void CMMFSbcEncoderDeMux::DoSetNumOfSubbands (TUint aNumOfSubbands)
1.1004 + {
1.1005 + if (iInterfaceSbcEncoder)
1.1006 + {
1.1007 + iInterfaceSbcEncoder->SetNumOfSubbands(aNumOfSubbands);
1.1008 + }
1.1009 + }
1.1010 +
1.1011 +void CMMFSbcEncoderDeMux::DoSetNumOfBlocks (TUint aNumOfBlocks)
1.1012 + {
1.1013 + if (iInterfaceSbcEncoder)
1.1014 + {
1.1015 + iInterfaceSbcEncoder->SetNumOfBlocks(aNumOfBlocks);
1.1016 + }
1.1017 + }
1.1018 +
1.1019 +void CMMFSbcEncoderDeMux::DoSetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod aAllocationMethod)
1.1020 + {
1.1021 + if (iInterfaceSbcEncoder)
1.1022 + {
1.1023 + iInterfaceSbcEncoder->SetAllocationMethod(aAllocationMethod);
1.1024 + }
1.1025 + }
1.1026 +
1.1027 +void CMMFSbcEncoderDeMux::DoSetBitpoolSize (TUint aBitpoolSize)
1.1028 + {
1.1029 + if (iInterfaceSbcEncoder)
1.1030 + {
1.1031 + iInterfaceSbcEncoder->SetBitpoolSize(aBitpoolSize);
1.1032 + }
1.1033 + }
1.1034 +
1.1035 +TInt CMMFSbcEncoderDeMux::DoApplyConfig()
1.1036 + {
1.1037 + TInt retVal = KErrNotReady;
1.1038 + if (iInterfaceSbcEncoder)
1.1039 + {
1.1040 + retVal = iInterfaceSbcEncoder->ApplyConfig();
1.1041 + }
1.1042 + return retVal;
1.1043 + }
1.1044 +
1.1045 +TInt CMMFSbcEncoderDeMux::DoGetSamplingFrequency(TUint& aSamplingFrequency)
1.1046 + {
1.1047 + TInt ret = KErrNotReady;
1.1048 + if (iInterfaceSbcEncoder)
1.1049 + {
1.1050 + ret = iInterfaceSbcEncoder->GetSamplingFrequency(aSamplingFrequency);
1.1051 + }
1.1052 + return ret;
1.1053 + }
1.1054 +
1.1055 +TInt CMMFSbcEncoderDeMux::DoGetChannelMode (MSbcEncoderIntfc::TSbcChannelMode& aChannelMode )
1.1056 + {
1.1057 + if (!iInterfaceSbcEncoder)
1.1058 + {
1.1059 + return KErrNotReady;
1.1060 + }
1.1061 + else
1.1062 + {
1.1063 + return iInterfaceSbcEncoder->GetChannelMode(aChannelMode);
1.1064 + }
1.1065 + }
1.1066 +
1.1067 +TInt CMMFSbcEncoderDeMux::DoGetNumOfSubbands (TUint& aNumOfSubbands )
1.1068 + {
1.1069 + if (!iInterfaceSbcEncoder)
1.1070 + {
1.1071 + return KErrNotReady;
1.1072 + }
1.1073 + else
1.1074 + {
1.1075 + return iInterfaceSbcEncoder->GetNumOfSubbands(aNumOfSubbands);
1.1076 + }
1.1077 + }
1.1078 +
1.1079 +TInt CMMFSbcEncoderDeMux::DoGetNumOfBlocks (TUint& aNumOfBlocks )
1.1080 + {
1.1081 + if (!iInterfaceSbcEncoder)
1.1082 + {
1.1083 + return KErrNotReady;
1.1084 + }
1.1085 + else
1.1086 + {
1.1087 + return iInterfaceSbcEncoder->GetNumOfBlocks(aNumOfBlocks);
1.1088 + }
1.1089 + }
1.1090 +
1.1091 +TInt CMMFSbcEncoderDeMux::DoGetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod& aAllocationMethod )
1.1092 + {
1.1093 + if (!iInterfaceSbcEncoder)
1.1094 + {
1.1095 + return KErrNotReady;
1.1096 + }
1.1097 + else
1.1098 + {
1.1099 + return iInterfaceSbcEncoder->GetAllocationMethod(aAllocationMethod);
1.1100 + }
1.1101 + }
1.1102 +
1.1103 +TInt CMMFSbcEncoderDeMux::DoGetBitpoolSize(TUint& aBitpoolSize)
1.1104 + {
1.1105 + if (!iInterfaceSbcEncoder)
1.1106 + {
1.1107 + return KErrNotReady;
1.1108 + }
1.1109 + else
1.1110 + {
1.1111 + return iInterfaceSbcEncoder->GetBitpoolSize(aBitpoolSize);
1.1112 + }
1.1113 + }
1.1114 +
1.1115 +// This is a utility method used by each of the TUint parametered methods to write their arrays
1.1116 +// back to the client (using aMessage)
1.1117 +void CMMFSbcEncoderDeMux::DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, RArray<TUint>& aArray)
1.1118 + {
1.1119 + // The message already contains the array count so retrieve it
1.1120 + // and verify that nothing's awry.
1.1121 + TPckgBuf<TInt> countBuf;
1.1122 + iUtility->ReadFromInputDesL(aMessage, &countBuf);
1.1123 + TInt count = countBuf();
1.1124 + if (count != aArray.Count())
1.1125 + {
1.1126 + User::Leave(KErrCorrupt);
1.1127 + }
1.1128 + // Create a suitably sized buffer
1.1129 + HBufC8* buf = HBufC8::NewLC(count * sizeof(TUint));
1.1130 + TPtr8 ptr = buf->Des();
1.1131 + RDesWriteStream stream(ptr);
1.1132 + CleanupClosePushL(stream);
1.1133 + // Stream the array data
1.1134 + for (TInt i = 0; i < count; i++)
1.1135 + {
1.1136 + stream.WriteUint32L(aArray[i]);
1.1137 + }
1.1138 + // Commit the data to the stream
1.1139 + stream.CommitL();
1.1140 + // Write the buffer back to the mux
1.1141 + iUtility->WriteToOutputDesL(aMessage, *buf);
1.1142 + CleanupStack::PopAndDestroy(2, buf); // stream, buf
1.1143 + }
1.1144 +
1.1145 +void CMMFSbcEncoderDeMux::DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, TBool aWriteChannelModeArray)
1.1146 + {
1.1147 + // The message already contains the array count so retrieve it
1.1148 + // and verify that nothing's awry.
1.1149 + TPckgBuf<TInt> countBuf;
1.1150 + iUtility->ReadFromInputDesL(aMessage, &countBuf);
1.1151 + TInt count = countBuf();
1.1152 + TInt arrayCount = 0;
1.1153 +
1.1154 + if (aWriteChannelModeArray)
1.1155 + {
1.1156 + arrayCount = iChannelModes.Count();
1.1157 + }
1.1158 + else
1.1159 + {
1.1160 + arrayCount = iAllocationMethods.Count();
1.1161 + }
1.1162 +
1.1163 + if (count != arrayCount)
1.1164 + {
1.1165 + User::Leave(KErrCorrupt);
1.1166 + }
1.1167 +
1.1168 + // Create a suitably sized buffer
1.1169 + HBufC8* buf = HBufC8::NewLC(count * sizeof(TUint));
1.1170 + TPtr8 ptr = buf->Des();
1.1171 + RDesWriteStream stream(ptr);
1.1172 + CleanupClosePushL(stream);
1.1173 + // Stream the array data
1.1174 + if (aWriteChannelModeArray)
1.1175 + {
1.1176 + for (TInt i = 0; i < count; i++)
1.1177 + {
1.1178 + stream.WriteUint32L(iChannelModes[i]);
1.1179 + }
1.1180 +
1.1181 + }
1.1182 + else
1.1183 + {
1.1184 + for (TInt i = 0; i < count; i++)
1.1185 + {
1.1186 + stream.WriteUint32L(iAllocationMethods[i]);
1.1187 + }
1.1188 + }
1.1189 +
1.1190 + // Commit the data to the stream
1.1191 + stream.CommitL();
1.1192 + // Write the buffer back to the mux
1.1193 + iUtility->WriteToOutputDesL(aMessage, *buf);
1.1194 + CleanupStack::PopAndDestroy(2, buf); // stream, buf
1.1195 + }
1.1196 +
1.1197 +/*****************************************************************************/
1.1198 +//
1.1199 +// ImplementationTable
1.1200 +//
1.1201 +
1.1202 +const TImplementationProxy ImplementationTable[] =
1.1203 + {
1.1204 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSbcEncoderMux, CMMFSbcEncoderMux::NewL),
1.1205 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSbcEncoderDeMux, CMMFSbcEncoderDeMux::NewL),
1.1206 + };
1.1207 +
1.1208 +/*****************************************************************************/
1.1209 +//
1.1210 +// ImplementationGroupProxy
1.1211 +//
1.1212 +//
1.1213 +
1.1214 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.1215 + {
1.1216 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.1217 +
1.1218 + return ImplementationTable;
1.1219 + }