os/mm/devsound/devsoundrefplugin/src/plugin/audio/mmfpcm16SwapEndianhwdevice.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-2003 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 #ifndef __MMF_SWAP_ENDIAN_HW_DEVICE_H__
    20 #define __MMF_SWAP_ENDIAN_HW_DEVICE_H__
    21 #include <mmf/server/mmfswcodecwrapper.h>
    22 #include "MMFAudioCodec.h"
    23 #include "MMFAudioPcm16SwapEndianCodecCommon.h"
    24 
    25 const TInt KPCM16ToPCM16BBufferSize = 0x2000;
    26 
    27 /*
    28 *
    29 * class CMMFPcm16SwapEndianHwDevice 
    30 *
    31 */
    32 class CMMFPcm16SwapEndianHwDevice : public CMMFSwCodecWrapper
    33 	{
    34 public:
    35 	static  CMMFPcm16SwapEndianHwDevice* NewL();
    36 	virtual CMMFSwCodec& Codec();
    37     ~CMMFPcm16SwapEndianHwDevice(); 
    38 private:
    39 	void ConstructL();
    40 	};
    41 
    42 /*
    43 *
    44 * class CMMFPcm16SwapEndianCodec coverts PCM16 to PCM16Big Endian
    45 *  
    46 */
    47 class CMMFPcm16SwapEndianCodec : public CMMFSwCodec
    48 	{
    49 public:
    50 	virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
    51 	virtual TUint SourceBufferSize() {return KPCM16ToPCM16BBufferSize;};
    52 	virtual TUint SinkBufferSize() {return KPCM16ToPCM16BBufferSize;};
    53 private:
    54 	TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
    55 private:
    56 	TMMFAudioPcm16SwapEndianCodec iPcm16EndianSwap;
    57 	};
    58 
    59 #endif //__MMF_SWAP_ENDIAN_HW_DEVICE_H__