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_MULAW_HW_DEVICE_H__
19 #define __MMF_PCM16_TO_MULAW_HW_DEVICE_H__
21 #include <mmf/server/mmfswcodecwrapper.h>
22 #include "MMFAudioCodec.h"
23 #include "MMFAudioSPcm16ToMuLawCodec.h"
25 const TInt KPCM16ToMuLawSrcBufferSize = 0x2000;
26 const TInt KPCM16ToMuLawSinkBufferSize = 0x1000;
30 * CMMFPcm16ToMulawHwDevice
33 class CMMFPcm16ToMulawHwDevice : public CMMFSwCodecWrapper
36 static CMMFPcm16ToMulawHwDevice* NewL();
37 virtual CMMFSwCodec& Codec();
38 ~CMMFPcm16ToMulawHwDevice();
45 * class CMMFPcm16ToALawCodec coverts PCM16 to MuLaw
48 class CMMFPcm16ToMuLawCodec : public CMMFSwCodec
51 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
52 virtual TUint SourceBufferSize() {return KPCM16ToMuLawSrcBufferSize;};
53 virtual TUint SinkBufferSize() {return KPCM16ToMuLawSinkBufferSize;};
55 TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
57 TMMFAudioSPcm16ToMuLawCodec iPcm16ToMuLaw;
60 #endif // __MMF_PCM16_TO_MULAW_HW_DEVICE_H__