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 "mmfpcmU16TopcmS16HwDevice.h"
20 * Returns the created hw device for passing audio through audio.
21 * for the wins implementation this would always be pcm16 although
22 * this is effectively a null hw device that will pass any datatype through
23 * @return "CMMFPcm16ToPcmU16BEHwDevice"
26 CMMFPcmU16ToPcm16HwDevice* CMMFPcmU16ToPcm16HwDevice::NewL()
28 CMMFPcmU16ToPcm16HwDevice* self = new (ELeave) CMMFPcmU16ToPcm16HwDevice();
29 CleanupStack::PushL(self);
31 CleanupStack::Pop(self);
37 * ~CMMFPcmU16ToPcm16HwDevice
40 CMMFPcmU16ToPcm16HwDevice::~CMMFPcmU16ToPcm16HwDevice()
47 * @return 'CMMFSwCodec&'
50 CMMFSwCodec& CMMFPcmU16ToPcm16HwDevice::Codec()
60 void CMMFPcmU16ToPcm16HwDevice::ConstructL()
62 iCodec = new (ELeave) CMMFPcmU16ToPcm16Codec();
70 * @return CMMFSwCodec::TCodecProcessResult
71 * this codec has a does not expand or shrink destination data
73 CMMFSwCodec::TCodecProcessResult CMMFPcmU16ToPcm16Codec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
75 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 preconditions ]
83 if( !CheckPreconditions( src, dst ))
85 //[ precondition violation ]
86 User::Leave( KErrArgument );
89 //we need to cast away CONST even on the source, as the TClass needs a TUint8*
90 TUint8* pSrc = CONST_CAST(TUint8*,src->Data().Ptr());
91 TUint8* pDst = CONST_CAST(TUint8*,dst->Data().Ptr());
93 TInt srcUse = src->Data().Length();
94 TInt noSamples = srcUse/2;
95 iAudioU16ToS16Pcm.Convert(pSrc, pDst, noSamples);
97 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
98 result.iSrcBytesProcessed = srcUse;
99 result.iDstBytesAdded = srcUse;
100 dst->Data().SetLength(srcUse);
103 // srcbytes/2 == destbytes added
106 // src data length is even
107 // dst data length is even ie pcm16 samples ]
108 __ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
109 __ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
110 __ASSERT_DEBUG( src->Data().Length() == dst->Data().Length(), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
111 __ASSERT_DEBUG( dst->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
112 __ASSERT_DEBUG( src->Data().Length() % 2 == 0, TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
120 * This methos tests the preconditions of the ProcessL method
121 * @return TBool ETrue for sucess and EFalse for failure of the preconditions
124 TBool CMMFPcmU16ToPcm16Codec::CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer )
126 TBool result = EFalse;
138 // Check position of src and dest are 0
139 if( aSrcBuffer->Position() )
144 // Check position of src and dest are 0
145 if( aDestBuffer->Position() )
150 // check there are sufficient bytes in the output to consume the input
151 if( ( aSrcBuffer->Data().Length() > aDestBuffer->Data().MaxLength() ) ||
152 ( aSrcBuffer->Data().Length() % 2 != 0 ) ) // must have pcm16 samples on input
157 result = ETrue; // preconditions have been satisfied