1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundrefplugin/src/plugin/audio/mmfpcm16toMulawhwdevice.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,155 @@
1.4 +// Copyright (c) 2003-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 "mmfpcm16toMulawhwdevice.h"
1.20 +
1.21 +/**
1.22 +*
1.23 +* NewL
1.24 +*
1.25 +*/
1.26 +CMMFPcm16ToMulawHwDevice* CMMFPcm16ToMulawHwDevice::NewL()
1.27 + {
1.28 + CMMFPcm16ToMulawHwDevice* self=new(ELeave) CMMFPcm16ToMulawHwDevice();
1.29 + CleanupStack::PushL(self);
1.30 + self->ConstructL();
1.31 + CleanupStack::Pop(self);
1.32 + return self;
1.33 + }
1.34 +
1.35 +/**
1.36 +*
1.37 +* ~CMMFPcm16ToMulawHwDevice
1.38 +*
1.39 +*/
1.40 +CMMFPcm16ToMulawHwDevice::~CMMFPcm16ToMulawHwDevice()
1.41 + {
1.42 + }
1.43 +
1.44 +/**
1.45 +*
1.46 +* ConstructL
1.47 +*
1.48 +*/
1.49 +void CMMFPcm16ToMulawHwDevice::ConstructL()
1.50 + {
1.51 + iCodec = new (ELeave) CMMFPcm16ToMuLawCodec();
1.52 + }
1.53 +
1.54 +/**
1.55 +*
1.56 +* Codec
1.57 +*
1.58 +*/
1.59 +CMMFSwCodec &CMMFPcm16ToMulawHwDevice::Codec()
1.60 + {
1.61 + return *iCodec;
1.62 + }
1.63 +
1.64 +/**
1.65 +*
1.66 +* ProcessL
1.67 +* @param aSrc
1.68 +* @param aDst
1.69 +* @pre position of buffer aSrc is 0
1.70 +* @pre position of buffer aDst is 0
1.71 +* @pre sufficient bytes in output to consume input
1.72 +* @return TCodecProcessResult
1.73 +*
1.74 +*/
1.75 +CMMFSwCodec::TCodecProcessResult CMMFPcm16ToMuLawCodec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
1.76 + {
1.77 + CMMFSwCodec::TCodecProcessResult result;
1.78 + result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
1.79 +
1.80 + //convert from generic CMMFBuffer to CMMFDataBuffer
1.81 + const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
1.82 + CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
1.83 +
1.84 + if( !CheckPreconditions( src, dst ) )
1.85 + {
1.86 + //[ precondition(s) violation ]
1.87 + User::Leave(KErrArgument);
1.88 + }
1.89 +
1.90 + TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
1.91 + TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
1.92 +
1.93 + TUint destUse = src->Data().Length()/2;
1.94 +
1.95 + //compress TWO bytes (16-bit PCM word) into a to 1 byte sample
1.96 + iPcm16ToMuLaw.Convert(pSrc, pDst, destUse );
1.97 +
1.98 + result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
1.99 + result.iSrcBytesProcessed = src->Data().Length();
1.100 + result.iDstBytesAdded = destUse;
1.101 +
1.102 + dst->Data().SetLength(result.iDstBytesAdded);
1.103 +
1.104 + //[ post conditions
1.105 + // srcbytes/2 == destbytes added
1.106 + // pos src == 0
1.107 + // pos dest == 0 ]
1.108 + __ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
1.109 + __ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
1.110 + __ASSERT_DEBUG( src->Data().Length()/2 == dst->Data().Length(), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
1.111 +
1.112 + return result;
1.113 + }
1.114 +
1.115 +/**
1.116 +*
1.117 +* Preconditions
1.118 +* This methos tests the preconditions of the ProcessL method
1.119 +* @return TBool ETrue for sucess and EFalse for failure of the preconditions
1.120 +*
1.121 +**/
1.122 +TBool CMMFPcm16ToMuLawCodec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
1.123 + {
1.124 + TBool result = EFalse;
1.125 +
1.126 + if(! aSrcBuffer )
1.127 + {
1.128 + return result;
1.129 + }
1.130 +
1.131 + if( ! aDestBuffer )
1.132 + {
1.133 + return result;
1.134 + }
1.135 +
1.136 + // Check position of src and dest are 0
1.137 + if( aSrcBuffer->Position() )
1.138 + {
1.139 + return result;
1.140 + }
1.141 +
1.142 + // Check position of src and dest are 0
1.143 + if( aDestBuffer->Position() )
1.144 + {
1.145 + return result;
1.146 + }
1.147 +
1.148 + // check there are sufficient bytes in the output to consume the input
1.149 + if( ( aSrcBuffer->Data().Length()/2 > aDestBuffer->Data().MaxLength()) ||
1.150 + ( aSrcBuffer->Data().Length() % 2 != 0 ))
1.151 + {
1.152 + return result;
1.153 + }
1.154 +
1.155 + result = ETrue; // preconditions have been satisfied
1.156 +
1.157 + return result;
1.158 + }