First public contribution.
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_PCM16_TO_PCMU16BE_HW_DEVICE_H__
17 #define __MMF_PCM16_TO_PCMU16BE_HW_DEVICE_H__
18 #include <mmf/server/mmfswcodecwrapper.h>
19 #include "MMFAudioCodec.h"
20 #include "MMFAudioPcm16ToPcmU16BECodec.h"
22 const TInt KPCM16ToPCMU16BeSourceBufferSize = 0x1000;
23 const TInt KPCM16ToPCMU16BeSinkBufferSize = KPCM16ToPCMU16BeSourceBufferSize;
27 * CMMFPcm16ToPcmU16BEHwDevice
30 class CMMFPcm16ToPcmU16BEHwDevice: public CMMFSwCodecWrapper
33 static CMMFPcm16ToPcmU16BEHwDevice* NewL();
34 virtual CMMFSwCodec& Codec();
35 ~CMMFPcm16ToPcmU16BEHwDevice();
42 * class CMMFPcm16ToPcmU16BECodec comverts PCM16 to pcm16 unsigned big endian
45 class CMMFPcm16ToPcmU16BECodec : public CMMFSwCodec
48 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
49 virtual TUint SourceBufferSize() {return KPCM16ToPCMU16BeSourceBufferSize;};
50 virtual TUint SinkBufferSize() {return KPCM16ToPCMU16BeSinkBufferSize;};
52 TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
54 TMMFAudioPcm16ToPcmU16BECodec iAudioPcm16ToPcmU16Be ;
57 #endif //__MMF_PCM16_TO_PCMU16BE_HW_DEVICE_H__