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_PCMU16_TO_PCM16_HW_DEVICE_H__
19 #define __MMF_PCMU16_TO_PCM16_HW_DEVICE_H__
21 #include <mmf/server/mmfswcodecwrapper.h>
22 #include "MMFAudioCodec.h"
23 #include "MMFAudioU16ToS16PcmCodec.h"
26 const TInt KPCMU16ToPCM16SourceBufferSize = 0x1000;
27 const TInt KPCMU16ToPCM16SinkBufferSize = KPCMU16ToPCM16SourceBufferSize;
31 * class CMMFPcmU16ToPcm16HwDevice
34 class CMMFPcmU16ToPcm16HwDevice : public CMMFSwCodecWrapper
37 static CMMFPcmU16ToPcm16HwDevice* NewL();
38 virtual CMMFSwCodec& Codec();
39 ~CMMFPcmU16ToPcm16HwDevice();
46 * class CMMFPcmU16ToPcm16Codec converts Pcm16 Unsigned to Pcm16
49 class CMMFPcmU16ToPcm16Codec : public CMMFSwCodec
52 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
53 virtual TUint SourceBufferSize() {return KPCMU16ToPCM16SourceBufferSize;};
54 virtual TUint SinkBufferSize() {return KPCMU16ToPCM16SourceBufferSize;};
56 TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
58 TMMFAudioU16ToS16PcmCodec iAudioU16ToS16Pcm ;
61 #endif //__MMF_PCMU16_TO_PCM16_HW_DEVICE_H__