os/mm/devsound/sounddevbt/src/Plugin/HwDevice/Audio/MmfBtPcmU16ToPcmS16HwDevice.h
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_BT_PCMU16_TO_PCM16_HW_DEVICE_H__
17 #define __MMF_BT_PCMU16_TO_PCM16_HW_DEVICE_H__
19 #include <mmfbtswcodecwrapper.h>
20 #include "MmfBtAudioCodec.h"
21 #include "MMFAudioU16ToS16PcmCodec.h"
24 const TInt KPCMU16ToPCM16SourceBufferSize = 0x1000;
25 const TInt KPCMU16ToPCM16SinkBufferSize = KPCMU16ToPCM16SourceBufferSize;
29 * class CMMFPcmU16ToPcm16HwDevice
32 class CMMFPcmU16ToPcm16HwDevice : public CMMFSwCodecWrapper
35 static CMMFPcmU16ToPcm16HwDevice* NewL();
36 virtual CMMFSwCodec& Codec();
37 ~CMMFPcmU16ToPcm16HwDevice();
44 * class CMMFPcmU16ToPcm16Codec converts Pcm16 Unsigned to Pcm16
47 class CMMFPcmU16ToPcm16Codec : public CMMFSwCodec
50 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
51 virtual TUint SourceBufferSize() {return KPCMU16ToPCM16SourceBufferSize;};
52 virtual TUint SinkBufferSize() {return KPCMU16ToPCM16SourceBufferSize;};
54 TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
56 TMMFAudioU16ToS16PcmCodec iAudioU16ToS16Pcm ;
59 #endif //__MMF_BT_PCMU16_TO_PCM16_HW_DEVICE_H__