os/mm/devsound/sounddevbt/src/Plugin/HwDevice/Audio/MmfBtMuLawToPcm16HwDevice.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __MMF_BT_MULAW_TO_PCM16_HW_DEVICE_H__
    17 #define __MMF_BT_MULAW_TO_PCM16_HW_DEVICE_H__
    18 
    19 #include <mmfbtswcodecwrapper.h>
    20 #include "MMFAudioCodecBase.h"
    21 
    22 #include "MMFAudioMuLawToS16PcmCodec.h"
    23 
    24 const TInt KMuLawToCM16SrcBufferSize  = 0x1000;
    25 const TInt KMuLawToCM16SinkBufferSize = 0x2000;
    26 
    27 /*
    28 *
    29 * class CMMFMulawToPcm16CodecHwDevice 
    30 *
    31 */
    32 class CMMFMulawToPcm16CodecHwDevice : public CMMFSwCodecWrapper
    33 	{
    34 public:
    35 	static  CMMFMulawToPcm16CodecHwDevice* NewL();
    36 	virtual CMMFSwCodec& Codec();
    37 	~CMMFMulawToPcm16CodecHwDevice(); 
    38 private:
    39 	void ConstructL();
    40 	};
    41 
    42 /*
    43 *
    44 * class CMMFMulawToPcm16Codec coverts MuLaw to PCM
    45 *  
    46 */
    47 class CMMFMulawToPcm16Codec : public CMMFSwCodec
    48 	{
    49 public:
    50 	virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
    51 	virtual TUint SourceBufferSize() {return KMuLawToCM16SrcBufferSize;};
    52 	virtual TUint SinkBufferSize() {return KMuLawToCM16SinkBufferSize;};
    53 private:
    54 	TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
    55 	TInt MulawSampleToPcm(TUint8 aAlaw);
    56 private:
    57 	TMMFAudioMuLawToS16PcmCodec iMulawTo16Pcm;
    58 	};
    59 
    60 #endif //__MMF_BT_MULAW_TO_PCM16_HW_DEVICE_H__