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.
17 #include "mmfSwCodecUtility.h"
21 /******************************************************************
23 ******************************************************************/
24 CMMFSwCodecUtility::CMMFSwCodecUtility()
29 CMMFSwCodecUtility::~CMMFSwCodecUtility()
33 CMMFSwCodecUtility* CMMFSwCodecUtility::NewL()
35 CMMFSwCodecUtility* self = new(ELeave) CMMFSwCodecUtility();
36 CleanupStack::PushL(self);
42 void CMMFSwCodecUtility::ConstructL()
46 void CMMFSwCodecUtility::ConfigAudioRamper(TInt64 aRampTime, TInt aSampleRate, TInt aChannels)
48 iRampSamples = I64LOW(((TInt64(aSampleRate) * aRampTime) /1000000 )); // Add this
49 iRampSamplesLeft = iRampSamples;
50 iChannels = aChannels;
55 TBool CMMFSwCodecUtility::RampAudio(CMMFDataBuffer* aBuffer)
58 TInt length = aBuffer->Data().Length()>>1;
59 TInt16* sample = REINTERPRET_CAST(TInt16*,&aBuffer->Data()[0]);
61 while ((i < length) && (iRampIncr < iRampSamples))
63 theResult = sample[i];
64 theResult *= iRampIncr;
65 theResult /= iRampSamples;
66 sample[i] = STATIC_CAST(TInt16, I64LOW(theResult) );
68 if ((iChannels == 1) || (!iSkip))
76 if (iRampIncr < iRampSamples)