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 "mmfpcm16ToImaAdpcm.h"
23 CMMFPcm16ToImaAdpcmHwDevice* CMMFPcm16ToImaAdpcmHwDevice::NewL()
25 CMMFPcm16ToImaAdpcmHwDevice* self=new(ELeave) CMMFPcm16ToImaAdpcmHwDevice();
26 CleanupStack::PushL(self);
28 CleanupStack::Pop(self);
34 * ~CMMFPcm16ToAlawHwDevice
37 CMMFPcm16ToImaAdpcmHwDevice::~CMMFPcm16ToImaAdpcmHwDevice()
46 void CMMFPcm16ToImaAdpcmHwDevice::ConstructL()
48 iCodec = new (ELeave) CMMFPcm16ToImaAdpcmCodec();
56 CMMFSwCodec &CMMFPcm16ToImaAdpcmHwDevice::Codec()
66 void CMMFPcm16ToImaAdpcmCodec::ResetL()
68 //Reset the actual codec
69 TMMFImaAdpcmCodecState state;
72 iPcm16ToImaAdpcm.SetState(state);
78 * @param aSrc src buffer
79 * @param aDst destination buffer
80 * @return CMMFSwCodec::TCodecProcessResult
81 * This function converts PCM samples to IMA ADPCM samples in
82 * blocks of KImaAdpcmBlockAlign (256) bytes. 1010 source
83 * bytes are required to fill a 256 byte block.
84 * @pre if last buffer and src contains < 1010 bytes discard input
85 * This function throws away the last buffer if it contains < 1010 bytes
86 * (ie we must have sufficient data to process an entire frame )
87 * All other src buffers must contain
88 * All destination buffer must contain
91 CMMFSwCodec::TCodecProcessResult CMMFPcm16ToImaAdpcmCodec::ProcessL(const CMMFBuffer& aSrc, CMMFBuffer& aDst)
93 CMMFSwCodec::TCodecProcessResult result;
94 result.iCodecProcessStatus = TCodecProcessResult::EProcessComplete;
96 //convert from generic CMMFBuffer to CMMFDataBuffer
97 const CMMFDataBuffer* source = STATIC_CAST(const CMMFDataBuffer*, &aSrc);
98 CMMFDataBuffer* destination = STATIC_CAST(CMMFDataBuffer*, &aDst);
100 //[ source and destination must not be null ]
101 if( !source || !destination )
102 User::Leave( KErrArgument );
104 //[ check preconditions ]
105 if( !BuffersStatus( source, destination ))
107 User::Leave( KErrArgument );
110 //[ code the buffers ]
111 ProcessBuffers( *source, *destination, result );
120 * @param aDestination
122 * all we have to do is find out how many source frames there
123 * are to process and process them
124 * finally returning process complete and fillin the status of the result
127 void CMMFPcm16ToImaAdpcmCodec::ProcessBuffers(const CMMFDataBuffer& aSource, CMMFDataBuffer& aDestination, CMMFSwCodec::TCodecProcessResult& aResult )
129 //[ calculate how many full buffers are to be processed ]
130 const TUint srcLen = aSource.Data().Length();
131 TInt numFullSrcFrames = srcLen/KSourceFrameSize;
133 TUint8* pSrc = const_cast<TUint8*>(aSource.Data().Ptr());
134 TUint8* pDst = const_cast<TUint8*>(aDestination.Data().Ptr());
135 TInt dstBytesAdded = 0;
136 // calculate number of pcm samples per source frame
137 const TInt KSamplesPerFrame = KSourceFrameSize/(sizeof(TInt16));
139 //[ convert all the buffers ]
140 for( TInt count = 0; count < numFullSrcFrames; count++ )
142 i16PcmToImaAdpcm.Convert(pSrc, pDst, KSamplesPerFrame );
143 pSrc += KSourceFrameSize;
144 pDst += KCodedFrameSize;
145 dstBytesAdded += KCodedFrameSize;
147 aResult.iSrcBytesProcessed = numFullSrcFrames*KSourceFrameSize;
148 aResult.iDstBytesAdded = dstBytesAdded;
149 aDestination.Data().SetLength( aResult.iDstBytesAdded);
155 * @param source buffer containing the data to be coded
156 * @param destination buffer containing the coded data
157 * @return TBool EFalse indicates bad buffers
160 TBool CMMFPcm16ToImaAdpcmCodec::BuffersStatus( const CMMFDataBuffer* source, const CMMFDataBuffer* destination )
162 TBool status = EFalse;
164 //[ demand source and destination positions are zero ]
165 CMMFDataBuffer* pDst = const_cast<CMMFDataBuffer*>( destination );
166 if( source->Position() || destination->Position() )
171 //[ Have we got full buffers ]
172 TInt sourceBuffers = source->Data().Length()/KSourceFrameSize;
173 TInt destBuffers = (pDst->Data().MaxLength())/KCodedFrameSize;
175 if( sourceBuffers <= destBuffers ) // the sink can process the source
177 return ETrue; // note this precondition has been weakened in line with other codecs
178 } // such that it can process partially full buffers
179 // ie you can if you wish use larger buffers than needed and only partially
180 // fill them. We do however expect all the input to be processed.