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 "MmfALawToPcm16HwDevice.h"
26 CMMFAlawToPcm16CodecHwDevice* CMMFAlawToPcm16CodecHwDevice::NewL()
28 CMMFAlawToPcm16CodecHwDevice* self=new(ELeave) CMMFAlawToPcm16CodecHwDevice();
29 CleanupStack::PushL(self);
31 CleanupStack::Pop(self);
37 * ~CMMFAlawPcm16HwDevice
40 CMMFAlawToPcm16CodecHwDevice::~CMMFAlawToPcm16CodecHwDevice()
49 void CMMFAlawToPcm16CodecHwDevice::ConstructL()
51 iCodec = new (ELeave) CMMFAlawToPcm16Codec();
59 CMMFSwCodec &CMMFAlawToPcm16CodecHwDevice::Codec()
69 * @pre position of buffer aSrc is 0
70 * @pre position of buffer aDst is 0
71 * @pre sufficient bytes in output to consume input
72 * @return TCodecProcessResult
75 CMMFSwCodec::TCodecProcessResult CMMFAlawToPcm16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
77 CMMFSwCodec::TCodecProcessResult result;
78 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
80 //convert from generic CMMFBuffer to CMMFDataBuffer
81 const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
82 CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
84 if( !CheckPreconditions( src, dst ))
86 //[ precondition violation ]
87 User::Leave( KErrArgument );
90 //we need to cast away CONST even on the source, as the TClass needs a TUint8*
91 TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
92 TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
93 TInt noSamples = src->Data().Length();
94 iAlawTo16Pcm.Convert(pSrc, pDst, noSamples );
96 TUint dstBytesAdded = noSamples*sizeof(TInt16);
98 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
99 result.iSrcBytesProcessed = src->Data().Length();
100 result.iDstBytesAdded = dstBytesAdded;
102 dst->Data().SetLength(dstBytesAdded);
104 //[ check post conditions ]
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() == dst->Data().Length()/2, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // 2 here signifies sizeof TInt16
108 __ASSERT_DEBUG( dst->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation )); // pcm output
116 * This methos tests the preconditions of the ProcessL method
117 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
120 TBool CMMFAlawToPcm16Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
122 TBool result = EFalse;
134 // Check position of src and dest are 0
135 if( aSrcBuffer->Position() )
140 // Check position of src and dest are 0
141 if( aDestBuffer->Position() )
146 // check there are sufficient bytes in the output to consume the input
147 if( aSrcBuffer->Data().Length() * 2 > aDestBuffer->Data().MaxLength() )
152 result = ETrue; // preconditions have been satisfied