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 __MMF_BT_PCM16_TO_IMAADPCM_HW_DEVICE_H__
|
sl@0
|
17 |
#define __MMF_BT_PCM16_TO_IMAADPCM_HW_DEVICE_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <mmfbtswcodecwrapper.h>
|
sl@0
|
20 |
#include "MMFAudioCodecBase.h"
|
sl@0
|
21 |
#include "MmfBtAudioCodec.h"
|
sl@0
|
22 |
#include "MMFAudioPcm16ToImaAdpcmCodec.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
const TInt KPCM16ToImaSrcBufferSize = 0x3F20;
|
sl@0
|
25 |
const TInt KPCM16ToImaSinkBufferSize = 0x1000;
|
sl@0
|
26 |
const TUint KSourceFrameSize = KImaAdpcmSamplesPerBlock * 2;
|
sl@0
|
27 |
const TUint KCodedFrameSize = KImaAdpcmBlockAlign;
|
sl@0
|
28 |
|
sl@0
|
29 |
/*
|
sl@0
|
30 |
*
|
sl@0
|
31 |
* class CMMFPcm16ToMulawHwDevice
|
sl@0
|
32 |
*
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class CMMFPcm16ToImaAdpcmHwDevice : public CMMFSwCodecWrapper
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
static CMMFPcm16ToImaAdpcmHwDevice* NewL();
|
sl@0
|
38 |
virtual CMMFSwCodec& Codec();
|
sl@0
|
39 |
~CMMFPcm16ToImaAdpcmHwDevice();
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
void ConstructL();
|
sl@0
|
42 |
};
|
sl@0
|
43 |
|
sl@0
|
44 |
/*
|
sl@0
|
45 |
*
|
sl@0
|
46 |
* class CMMFPcm16ToALawCodec coverts Pcm16 to Imaad
|
sl@0
|
47 |
*
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
class CMMFPcm16ToImaAdpcmCodec : public CMMFSwCodec
|
sl@0
|
50 |
{
|
sl@0
|
51 |
public:
|
sl@0
|
52 |
virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
|
sl@0
|
53 |
virtual TUint SourceBufferSize() {return KPCM16ToImaSrcBufferSize;};
|
sl@0
|
54 |
virtual TUint SinkBufferSize() {return KPCM16ToImaSinkBufferSize;};
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
virtual void ResetL();
|
sl@0
|
57 |
void ProcessBuffers(const CMMFDataBuffer& aSource, CMMFDataBuffer& aDestination, CMMFSwCodec::TCodecProcessResult& aResult );
|
sl@0
|
58 |
TBool BuffersStatus( const CMMFDataBuffer* source, const CMMFDataBuffer* destination );
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
TMMFAudioPcm16ToImaAdpcmCodec iPcm16ToImaAdpcm;
|
sl@0
|
61 |
TMMFAudioPcm16ToImaAdpcmCodec i16PcmToImaAdpcm;
|
sl@0
|
62 |
TUint iLastFrameNumber;
|
sl@0
|
63 |
};
|
sl@0
|
64 |
|
sl@0
|
65 |
#endif //__MMF_BT_PCM16_TO_IMAADPCM_HW_DEVICE_H__
|