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_PCMU16BE_TO_PCM16_HW_DEVICE_H__
19 #define __MMF_PCMU16BE_TO_PCM16_HW_DEVICE_H__
20 #include <mmf/server/mmfswcodecwrapper.h>
21 #include "MMFAudioCodec.h"
22 #include "MMFAudioPcmU16BeToPcmS16Codec.h"
24 const TInt KPCMU16BeToPCM16SourceBufferSize = 0x1000;
25 const TInt KPCMU16BeToPCM16SinkBufferSize = KPCMU16BeToPCM16SourceBufferSize;
29 * class CMMFPcmU16BeToPcmS16HwDevice
32 class CMMFPcmU16BeToPcmS16HwDevice : public CMMFSwCodecWrapper
35 static CMMFPcmU16BeToPcmS16HwDevice* NewL();
36 virtual CMMFSwCodec& Codec();
37 ~CMMFPcmU16BeToPcmS16HwDevice();
44 * class CMMFPcmU16BeToPcmS16Codec converts Pcm16 Big endian to Pcm16
47 class CMMFPcmU16BeToPcmS16Codec : public CMMFSwCodec
50 virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
51 virtual TUint SourceBufferSize() {return KPCMU16BeToPCM16SourceBufferSize;};
52 virtual TUint SinkBufferSize() {return KPCMU16BeToPCM16SinkBufferSize;};
54 TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
56 TMMFAudioPcmU16BeToPcmS16Codec iAudioPcmU16BeToPcmS16;
59 #endif //__MMF_PCMU16BE_TO_PCM16_HW_DEVICE_H__