First public contribution.
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.
14 // MmfMulawToPcm16HwDevice.cpp
18 #include "MMFAudioCodec.h"
19 #include <mmf/common/mmfpaniccodes.h>
20 #include "mmfpcm16SwapEndianhwdevice.h"
25 * @return 'CMMFPcm16SwapEndianHwDevice*'
28 CMMFPcm16SwapEndianHwDevice* CMMFPcm16SwapEndianHwDevice::NewL()
30 CMMFPcm16SwapEndianHwDevice* self=new(ELeave) CMMFPcm16SwapEndianHwDevice();
31 CleanupStack::PushL(self);
33 CleanupStack::Pop(self);
39 * ~CMMFPcm16SwapEndianHwDevice
41 CMMFPcm16SwapEndianHwDevice::~CMMFPcm16SwapEndianHwDevice()
50 void CMMFPcm16SwapEndianHwDevice::ConstructL()
52 iCodec = new (ELeave)CMMFPcm16SwapEndianCodec();
60 CMMFSwCodec &CMMFPcm16SwapEndianHwDevice::Codec()
70 * @return 'CMMFSwCodec::TCodecProcessResult'
73 CMMFSwCodec::TCodecProcessResult CMMFPcm16SwapEndianCodec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
75 CMMFSwCodec::TCodecProcessResult result;
76 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
78 //convert from generic CMMFBuffer to CMMFDataBuffer
79 const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
80 CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDst);
82 //[ check the preconditions ]
83 if( !CheckPreconditions( src, dst ))
85 //[ precondition violation ]
86 User::Leave( KErrArgument );
89 TInt srcUse = src->Data().Length();
91 //we need to cast away CONST even on the source, as the TClass needs a TUint8*
92 TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
93 TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
95 TInt noSamples = srcUse / 2; //divide by TWO as 2 bytes are equal to 1 sample
96 iPcm16EndianSwap.Convert(pSrc, pDst, noSamples );
98 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
99 result.iSrcBytesProcessed = srcUse;
100 result.iDstBytesAdded = srcUse;
102 dst->Data().SetLength(srcUse);
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(), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
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 CMMFPcm16SwapEndianCodec::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() > aDestBuffer->Data().MaxLength() ) ||
148 ( aSrcBuffer->Data().Length() % 2 != 0 ))
153 result = ETrue; // preconditions have been satisfied