Update contrib.
1 // Copyright (c) 2002-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 #ifndef __MMF_PCMS16_TO_PCMU16_HW_DEVICE_H__
17 #define __MMF_PCMS16_TO_PCMU16_HW_DEVICE_H__
19 #include <mmf/server/mmfswcodecwrapper.h>
20 #include "MMFAudioCodec.h"
21 #include "MMFAudioPcm16ToPcmU16Codec.h"
23 const TInt KPCM16ToPCMU16SourceBufferSize = 0x1000;
24 const TInt KPCM16ToPCMU16SinkBufferSize = KPCM16ToPCMU16SourceBufferSize;
28 * class CMMFPcm16ToPcmU16HwDevice
31 class CMMFPcm16ToPcmU16HwDevice : public CMMFSwCodecWrapper
34 static CMMFPcm16ToPcmU16HwDevice* NewL();
35 virtual CMMFSwCodec& Codec();
36 ~CMMFPcm16ToPcmU16HwDevice();
43 * class CMMFPcm16ToPcmU16CodecCodec converts Pcm16 to Pcm16 unsigned
46 class CMMFPcm16ToPcmU16CodecCodec : public CMMFSwCodec
49 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
50 virtual TUint SourceBufferSize() {return KPCM16ToPCMU16SourceBufferSize;};
51 virtual TUint SinkBufferSize() {return KPCM16ToPCMU16SinkBufferSize;};
53 TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
55 TMMFAudioPcm16ToPcmU16Codec iAudioPcm16ToPcmU16;
58 #endif //__MMF_PCMS16_TO_PCMU16_HW_DEVICE_H__