sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2002-2003 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __MMF_PCM16_TO_IMAADPCM_HW_DEVICE_H__
|
sl@0
|
19 |
#define __MMF_PCM16_TO_IMAADPCM_HW_DEVICE_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <mmf/server/mmfswcodecwrapper.h>
|
sl@0
|
22 |
#include "MMFAudioCodecBase.h"
|
sl@0
|
23 |
#include "MMFAudioCodec.h"
|
sl@0
|
24 |
#include "MMFAudioPcm16ToImaAdpcmCodec.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
const TInt KPCM16ToImaSrcBufferSize = 0x3F20;
|
sl@0
|
27 |
const TInt KPCM16ToImaSinkBufferSize = 0x1000;
|
sl@0
|
28 |
const TUint KSourceFrameSize = KImaAdpcmSamplesPerBlock * 2;
|
sl@0
|
29 |
const TUint KCodedFrameSize = KImaAdpcmBlockAlign;
|
sl@0
|
30 |
|
sl@0
|
31 |
/*
|
sl@0
|
32 |
*
|
sl@0
|
33 |
* class CMMFPcm16ToMulawHwDevice
|
sl@0
|
34 |
*
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
class CMMFPcm16ToImaAdpcmHwDevice : public CMMFSwCodecWrapper
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
static CMMFPcm16ToImaAdpcmHwDevice* NewL();
|
sl@0
|
40 |
virtual CMMFSwCodec& Codec();
|
sl@0
|
41 |
~CMMFPcm16ToImaAdpcmHwDevice();
|
sl@0
|
42 |
private:
|
sl@0
|
43 |
void ConstructL();
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
/*
|
sl@0
|
47 |
*
|
sl@0
|
48 |
* class CMMFPcm16ToALawCodec coverts Pcm16 to Imaad
|
sl@0
|
49 |
*
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
class CMMFPcm16ToImaAdpcmCodec : public CMMFSwCodec
|
sl@0
|
52 |
{
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
virtual TCodecProcessResult ProcessL(const CMMFBuffer& aSource, CMMFBuffer& aDest);
|
sl@0
|
55 |
virtual TUint SourceBufferSize() {return KPCM16ToImaSrcBufferSize;};
|
sl@0
|
56 |
virtual TUint SinkBufferSize() {return KPCM16ToImaSinkBufferSize;};
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
virtual void ResetL();
|
sl@0
|
59 |
void ProcessBuffers(const CMMFDataBuffer& aSource, CMMFDataBuffer& aDestination, CMMFSwCodec::TCodecProcessResult& aResult );
|
sl@0
|
60 |
TBool BuffersStatus( const CMMFDataBuffer* source, const CMMFDataBuffer* destination );
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
TMMFAudioPcm16ToImaAdpcmCodec iPcm16ToImaAdpcm;
|
sl@0
|
63 |
TMMFAudioPcm16ToImaAdpcmCodec i16PcmToImaAdpcm;
|
sl@0
|
64 |
TUint iLastFrameNumber;
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
#endif //__MMF_PCM16_TO_IMAADPCM_HW_DEVICE_H__
|