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 "MMFpcm16ToPcmU8HwDevice.h"
20 * Returns the created hw device for signed pcm16 to unsigned pcm8 audio.
22 * @return "CMMFPcm16ToPcmU8HwDevice"
25 CMMFPcm16ToPcmU8HwDevice* CMMFPcm16ToPcmU8HwDevice::NewL()
27 CMMFPcm16ToPcmU8HwDevice* self = new (ELeave) CMMFPcm16ToPcmU8HwDevice();
28 CleanupStack::PushL(self);
30 CleanupStack::Pop(self);
36 * Second phase constructor.
39 void CMMFPcm16ToPcmU8HwDevice::ConstructL()
41 iCodec = new (ELeave) CMMFPcm16ToPcmU8Codec();
46 * ~CMMFPcm16ToPcmU8HwDevice
48 CMMFPcm16ToPcmU8HwDevice::~CMMFPcm16ToPcmU8HwDevice()
50 //The codec is deleted in the base class CMMFSwCodecWrapper
56 * @return 'CMMFSwCodec&'
59 CMMFSwCodec& CMMFPcm16ToPcmU8HwDevice::Codec()
69 * @return 'CMMFSwCodec::TCodecProcessResult'
72 CMMFSwCodec::TCodecProcessResult CMMFPcm16ToPcmU8Codec::ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest)
74 TCodecProcessResult result;
75 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
77 //convert from generic CMMFBuffer to CMMFDataBuffer
78 const CMMFDataBuffer* src = STATIC_CAST(const CMMFDataBuffer*, &aSource);
79 CMMFDataBuffer* dst = STATIC_CAST(CMMFDataBuffer*, &aDest);
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());
91 TInt srcUse = src->Data().Length();
93 TInt noSamples = srcUse /2;
94 iAudioS16ToU8Pcm.Convert(pSrc, pDst, noSamples );
96 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
97 result.iSrcBytesProcessed = srcUse;
98 result.iDstBytesAdded = srcUse / 2;
100 dst->Data().SetLength(result.iDstBytesAdded);
103 // srcbytes/2 == destbytes added
106 __ASSERT_DEBUG( (src->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
107 __ASSERT_DEBUG( (dst->Position() == 0), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
108 __ASSERT_DEBUG( src->Data().Length()/2 == dst->Data().Length(), TMmfAudioCodecPanicsNameSpace::Panic( TMmfAudioCodecPanicsNameSpace::EPostConditionViolation ));
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 CMMFPcm16ToPcmU8Codec::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