Update contrib.
2 * Copyright (c) 2002-2003 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
18 #ifndef __MMF_PCM16_TO_IMAADPCM_HW_DEVICE_H__
19 #define __MMF_PCM16_TO_IMAADPCM_HW_DEVICE_H__
21 #include <mmf/server/mmfswcodecwrapper.h>
22 #include "MMFAudioCodecBase.h"
23 #include "MMFAudioCodec.h"
24 #include "MMFAudioPcm16ToImaAdpcmCodec.h"
26 const TInt KPCM16ToImaSrcBufferSize = 0x3F20;
27 const TInt KPCM16ToImaSinkBufferSize = 0x1000;
28 const TUint KSourceFrameSize = KImaAdpcmSamplesPerBlock * 2;
29 const TUint KCodedFrameSize = KImaAdpcmBlockAlign;
33 * class CMMFPcm16ToMulawHwDevice
36 class CMMFPcm16ToImaAdpcmHwDevice : public CMMFSwCodecWrapper
39 static CMMFPcm16ToImaAdpcmHwDevice* NewL();
40 virtual CMMFSwCodec& Codec();
41 ~CMMFPcm16ToImaAdpcmHwDevice();
48 * class CMMFPcm16ToALawCodec coverts Pcm16 to Imaad
51 class CMMFPcm16ToImaAdpcmCodec : public CMMFSwCodec
54 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
55 virtual TUint SourceBufferSize() {return KPCM16ToImaSrcBufferSize;};
56 virtual TUint SinkBufferSize() {return KPCM16ToImaSinkBufferSize;};
58 virtual void ResetL();
59 void ProcessBuffers(const CMMFDataBuffer& aSource, CMMFDataBuffer& aDestination, CMMFSwCodec::TCodecProcessResult& aResult );
60 TBool BuffersStatus( const CMMFDataBuffer* source, const CMMFDataBuffer* destination );
62 TMMFAudioPcm16ToImaAdpcmCodec iPcm16ToImaAdpcm;
63 TMMFAudioPcm16ToImaAdpcmCodec i16PcmToImaAdpcm;
64 TUint iLastFrameNumber;
67 #endif //__MMF_PCM16_TO_IMAADPCM_HW_DEVICE_H__