sl@0: // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0: // All rights reserved.
sl@0: // This component and the accompanying materials are made available
sl@0: // under the terms of "Eclipse Public License v1.0"
sl@0: // which accompanies this distribution, and is available
sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0: //
sl@0: // Initial Contributors:
sl@0: // Nokia Corporation - initial contribution.
sl@0: //
sl@0: // Contributors:
sl@0: //
sl@0: // Description:
sl@0: // src\Plugin\HwDevice\Audio\MmfBtPcmU8ToPcm16HwDevice.h
sl@0: // 
sl@0: //
sl@0: 
sl@0: #ifndef __MMF_BT_PCMU8_TO_PCM16_HW_DEVICE_H__
sl@0: #define __MMF_BT_PCMU8_TO_PCM16_HW_DEVICE_H__
sl@0: 
sl@0: #include <mmfbtswcodecwrapper.h>
sl@0: #include "MmfBtAudioCodec.h"
sl@0: #include "MMFAudioU8ToS16PcmCodec.h"
sl@0: 
sl@0: const TInt KPCMU8ToPCM16SourceBufferSize = 0x0800;
sl@0: const TInt KPCMU8ToPCM16SinkBufferSize   = 0x1000; //sink buffer length is twice source
sl@0: 
sl@0: /*
sl@0: * 
sl@0: * class CMMFPcmU8ToPcm16HwDevice
sl@0: *
sl@0: */
sl@0: class CMMFPcmU8ToPcm16HwDevice : public CMMFSwCodecWrapper
sl@0: 	{
sl@0: public:
sl@0: 	static  CMMFPcmU8ToPcm16HwDevice* NewL();
sl@0: 	virtual CMMFSwCodec& Codec();
sl@0:     ~CMMFPcmU8ToPcm16HwDevice(); 
sl@0: private:
sl@0: 	void ConstructL();
sl@0: 	};
sl@0: 
sl@0: /*
sl@0: *
sl@0: * class CMMFPcmU8ToPcm16Codec converts Pcm 8 unsigned to Pcm16
sl@0: *
sl@0: */
sl@0: class CMMFPcmU8ToPcm16Codec : public CMMFSwCodec
sl@0: 	{
sl@0: public:
sl@0: 	virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
sl@0: 	virtual TUint SourceBufferSize() {return KPCMU8ToPCM16SourceBufferSize;};
sl@0: 	virtual TUint SinkBufferSize() {return KPCMU8ToPCM16SinkBufferSize;};
sl@0: private:
sl@0: 	TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
sl@0: private:
sl@0: 	TMMFAudioU8ToS16PcmCodec iAudioU8ToS16Pcm ;
sl@0: 	};
sl@0: 
sl@0: #endif //__MMF_BT_PCMU8_TO_PCM16_HW_DEVICE_H__
sl@0: