Update contrib.
1 // Copyright (c) 2003-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 "mmfpcm16toMulawhwdevice.h"
23 CMMFPcm16ToMulawHwDevice* CMMFPcm16ToMulawHwDevice::NewL()
25 CMMFPcm16ToMulawHwDevice* self=new(ELeave) CMMFPcm16ToMulawHwDevice();
26 CleanupStack::PushL(self);
28 CleanupStack::Pop(self);
34 * ~CMMFPcm16ToMulawHwDevice
37 CMMFPcm16ToMulawHwDevice::~CMMFPcm16ToMulawHwDevice()
46 void CMMFPcm16ToMulawHwDevice::ConstructL()
48 iCodec = new (ELeave) CMMFPcm16ToMuLawCodec();
56 CMMFSwCodec &CMMFPcm16ToMulawHwDevice::Codec()
66 * @pre position of buffer aSrc is 0
67 * @pre position of buffer aDst is 0
68 * @pre sufficient bytes in output to consume input
69 * @return TCodecProcessResult
72 CMMFSwCodec::TCodecProcessResult CMMFPcm16ToMuLawCodec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
74 CMMFSwCodec::TCodecProcessResult result;
75 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
77 //convert from generic CMMFBuffer to CMMFDataBuffer
78 const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
79 CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
81 if( !CheckPreconditions( src, dst ) )
83 //[ precondition(s) violation ]
84 User::Leave(KErrArgument);
87 TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
88 TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
90 TUint destUse = src->Data().Length()/2;
92 //compress TWO bytes (16-bit PCM word) into a to 1 byte sample
93 iPcm16ToMuLaw.Convert(pSrc, pDst, destUse );
95 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
96 result.iSrcBytesProcessed = src->Data().Length();
97 result.iDstBytesAdded = destUse;
99 dst->Data().SetLength(result.iDstBytesAdded);
102 // srcbytes/2 == destbytes added
105 __ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
106 __ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
107 __ASSERT_DEBUG( src->Data().Length()/2 == dst->Data().Length(), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
115 * This methos tests the preconditions of the ProcessL method
116 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
119 TBool CMMFPcm16ToMuLawCodec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
121 TBool result = EFalse;
133 // Check position of src and dest are 0
134 if( aSrcBuffer->Position() )
139 // Check position of src and dest are 0
140 if( aDestBuffer->Position() )
145 // check there are sufficient bytes in the output to consume the input
146 if( ( aSrcBuffer->Data().Length()/2 > aDestBuffer->Data().MaxLength()) ||
147 ( aSrcBuffer->Data().Length() % 2 != 0 ))
152 result = ETrue; // preconditions have been satisfied