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 "MMFAudioCodec.h"
17 #include <mmf/common/mmfpaniccodes.h>
18 #include "MmfMuLawToPcm16hwDevice.h"
25 CMMFMulawToPcm16CodecHwDevice* CMMFMulawToPcm16CodecHwDevice::NewL()
27 CMMFMulawToPcm16CodecHwDevice* self=new(ELeave) CMMFMulawToPcm16CodecHwDevice();
28 CleanupStack::PushL(self);
30 CleanupStack::Pop(self);
36 * ~CMMFMulawPcm16HwDevice
39 CMMFMulawToPcm16CodecHwDevice::~CMMFMulawToPcm16CodecHwDevice()
48 void CMMFMulawToPcm16CodecHwDevice::ConstructL()
50 iCodec = new (ELeave) CMMFMulawToPcm16Codec();
58 CMMFSwCodec &CMMFMulawToPcm16CodecHwDevice::Codec()
68 * @return TCodecProcessResult
71 CMMFSwCodec::TCodecProcessResult CMMFMulawToPcm16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
73 CMMFSwCodec::TCodecProcessResult result;
74 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
76 //convert from generic CMMFBuffer to CMMFDataBuffer
77 const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
78 CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
80 //[check preconditions hold ]
81 if( !CheckPreconditions( src, dst ))
83 //[ precondition violation ]
84 User::Leave( KErrArgument );
87 //we need to cast away CONST even on the source, as the TClass needs a TUint8*
88 TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
89 TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
90 TInt noSamples = src->Data().Length();
92 iMulawTo16Pcm.Convert(pSrc, pDst, noSamples );
94 TUint dstBytesAdded = noSamples*sizeof(TInt16);
96 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
97 result.iSrcBytesProcessed = src->Data().Length();
98 result.iDstBytesAdded = dstBytesAdded;
100 dst->Data().SetLength( dstBytesAdded );
102 //[ check post conditions ]
103 __ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
104 __ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
105 __ASSERT_DEBUG( src->Data().Length() == dst->Data().Length()/2, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // 2 here signifies sizeof TInt16
106 __ASSERT_DEBUG( dst->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // pcm output
114 * This methos tests the preconditions of the ProcessL method
115 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
118 TBool CMMFMulawToPcm16Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
120 TBool result = EFalse;
132 // Check position of src and dest are 0
133 if( aSrcBuffer->Position() )
138 // Check position of src and dest are 0
139 if( aDestBuffer->Position() )
144 // check there are sufficient bytes in the output to consume the input
145 if( aSrcBuffer->Data().Length() > aDestBuffer->Data().MaxLength()/2 )
150 result = ETrue; // preconditions have been satisfied