os/mm/devsound/devsoundrefplugin/src/plugin/audio/mmfpcm16topcmU16BEHwDevice.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_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"
    21 
    22 const TInt KPCM16ToPCMU16BeSourceBufferSize = 0x1000;
    23 const TInt KPCM16ToPCMU16BeSinkBufferSize   = KPCM16ToPCMU16BeSourceBufferSize; 
    24 
    25 /*
    26 *
    27 * CMMFPcm16ToPcmU16BEHwDevice
    28 *
    29 */      
    30 class CMMFPcm16ToPcmU16BEHwDevice: public CMMFSwCodecWrapper
    31 	{
    32 public:
    33 	static  CMMFPcm16ToPcmU16BEHwDevice* NewL();
    34 	virtual CMMFSwCodec& Codec();
    35 	~CMMFPcm16ToPcmU16BEHwDevice(); 
    36 private:
    37 	void ConstructL();
    38 	};
    39 
    40 /*
    41 *
    42 * class CMMFPcm16ToPcmU16BECodec comverts PCM16 to pcm16 unsigned big endian
    43 *
    44 */
    45 class CMMFPcm16ToPcmU16BECodec : public CMMFSwCodec
    46 	{
    47 public:
    48 	virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
    49 	virtual TUint SourceBufferSize() {return KPCM16ToPCMU16BeSourceBufferSize;};
    50 	virtual TUint SinkBufferSize() {return KPCM16ToPCMU16BeSinkBufferSize;};
    51 private:
    52 	TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
    53 private:
    54 	TMMFAudioPcm16ToPcmU16BECodec iAudioPcm16ToPcmU16Be ;
    55 	};
    56 
    57 #endif //__MMF_PCM16_TO_PCMU16BE_HW_DEVICE_H__
    58