os/mm/devsound/devsoundrefplugin/src/plugin/audio/MmfImaAdpcmtopcm16hwdevice.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef MMFIMAADPCMTOPCM16HWDEVICE_H
sl@0
    17
#define MMFIMAADPCMTOPCM16HWDEVICE_H
sl@0
    18
#include <mmf/server/mmfswcodecwrapper.h>
sl@0
    19
#include "MMFAudioCodecBase.h"
sl@0
    20
#include "MMFAudioImaAdpcmToS16PcmCodec.h"
sl@0
    21
#include <mmf/server/devsoundstandardcustominterfaces.h>
sl@0
    22
sl@0
    23
const TInt KImaToPCM16SrcBufferSize  = 1024;
sl@0
    24
const TInt KImaToPCM16SinkBufferSize = 4096;
sl@0
    25
sl@0
    26
/*
sl@0
    27
*
sl@0
    28
* class CMMFImaAdpcmToPcm16CodecHwDevice 
sl@0
    29
*
sl@0
    30
*/
sl@0
    31
class CMMFImaAdpcmToPcm16CodecHwDevice : public CMMFSwCodecWrapper, public MMMFDevSoundCustomInterfaceFileBlockLength
sl@0
    32
	{
sl@0
    33
public:
sl@0
    34
	static  CMMFImaAdpcmToPcm16CodecHwDevice* NewL();
sl@0
    35
	virtual CMMFSwCodec& Codec();
sl@0
    36
	~CMMFImaAdpcmToPcm16CodecHwDevice(); 
sl@0
    37
	virtual TInt Start(TDeviceFunc aFuncCmd, TDeviceFlow aFlowCmd);
sl@0
    38
private:
sl@0
    39
	void SetFileBlockLength(TUint aBlockAlign);
sl@0
    40
	TAny* CustomInterface(TUid aInterfaceId);
sl@0
    41
private:
sl@0
    42
	void ConstructL();
sl@0
    43
sl@0
    44
private:
sl@0
    45
	TUint iBlockAlign;
sl@0
    46
	};
sl@0
    47
sl@0
    48
sl@0
    49
/*
sl@0
    50
*
sl@0
    51
* class CMMFMulawToPcm16Codec coverts Imaad to PCM16
sl@0
    52
*  
sl@0
    53
*/
sl@0
    54
class CMMFImaAdpcmToPcm16Codec : public CMMFSwCodec
sl@0
    55
	{
sl@0
    56
public:
sl@0
    57
	CMMFImaAdpcmToPcm16Codec();
sl@0
    58
	virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
sl@0
    59
	virtual TUint SourceBufferSize() {return KImaToPCM16SrcBufferSize;}
sl@0
    60
	virtual TUint SinkBufferSize() {return KImaToPCM16SinkBufferSize;}
sl@0
    61
	TInt Configure(TUint aChannels, TUint aSampleRate, TUint aBlockAlign = 0);
sl@0
    62
private:
sl@0
    63
	TBool CheckPreconditions( const CMMFDataBuffer* aSrcBuffer, CMMFDataBuffer* aDestBuffer );
sl@0
    64
private:
sl@0
    65
	TMMFAudioImaAdpcmToS16PcmCodec iImaAdpcmTo16Pcm;
sl@0
    66
	
sl@0
    67
private:
sl@0
    68
	TUint iChannels;
sl@0
    69
	TUint iSampleRate;
sl@0
    70
	TUint iBlockAlign;
sl@0
    71
	TUint iSamplesPerBlock;
sl@0
    72
	};
sl@0
    73
sl@0
    74
#endif //MMFIMAADPCMTOPCM16HWDEVICE_H