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 |
// include\mmf\src\plugin\Hwdevice\audio\pcm16ToPcm16HwDevice.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __MMF_PCM16_TO_PCM16_HW_DEVICE_H__
|
sl@0
|
19 |
#define __MMF_PCM16_TO_PCM16_HW_DEVICE_H__
|
sl@0
|
20 |
#include <mmf/server/mmfswcodecwrapper.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifdef SYMBIAN_MDF_SHAREDCHUNK_SOUNDDRIVER
|
sl@0
|
23 |
#include "mdasoundadapter.h"
|
sl@0
|
24 |
#else
|
sl@0
|
25 |
#include <mdasound.h>
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "../../swcodecwrapper/mmfswaudioinput.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
#include "../../swcodecwrapper/mmfSwCodecDataPath.h"
|
sl@0
|
31 |
|
sl@0
|
32 |
// for the bitrate custom interface
|
sl@0
|
33 |
#include <mmf/server/devsoundstandardcustominterfaces.h>
|
sl@0
|
34 |
|
sl@0
|
35 |
//note we need to keep this buffer at 8K as the tone utility expects 8K
|
sl@0
|
36 |
const TInt KPCM16ToPCM16BufferSize = 0x2000;
|
sl@0
|
37 |
const TInt KDevSoundMinFrameSize = 0x800; //2K
|
sl@0
|
38 |
const TInt KDevSoundMaxFrameSize = 0x4000; //16K
|
sl@0
|
39 |
const TInt KDevSoundDeltaFrameSize = 0x800; //2K
|
sl@0
|
40 |
const TInt KDevSoundFramesPerSecond = 4;
|
sl@0
|
41 |
|
sl@0
|
42 |
/*
|
sl@0
|
43 |
*
|
sl@0
|
44 |
* class CMMFPcm16ToPcm16HwDevice
|
sl@0
|
45 |
*
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
class CMMFPcm16ToPcm16HwDevice : public CMMFSwCodecWrapper,
|
sl@0
|
48 |
public MMMFDevSoundCustomInterfaceBitRate
|
sl@0
|
49 |
{
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
static CMMFPcm16ToPcm16HwDevice* NewL();
|
sl@0
|
52 |
virtual CMMFSwCodec& Codec();
|
sl@0
|
53 |
virtual TAny* CustomInterface(TUid aInterfaceId);
|
sl@0
|
54 |
~CMMFPcm16ToPcm16HwDevice();
|
sl@0
|
55 |
|
sl@0
|
56 |
TUint CalculateBufferSize();
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
// from MMMFDevSoundCustomInterfaceBitRate
|
sl@0
|
59 |
virtual void GetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates);
|
sl@0
|
60 |
virtual TInt BitRateL();
|
sl@0
|
61 |
virtual void SetBitRateL(TInt aBitRate);
|
sl@0
|
62 |
|
sl@0
|
63 |
void BitRatesFromSampleRatesL(RArray<TInt>& aSupportedBitRates, const RArray<TInt>& aSupportedSampleRates);
|
sl@0
|
64 |
|
sl@0
|
65 |
void ConstructL();
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
/*
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* class CMMFPcm16ToPcm16Codec converts Pcm16 to pcm16
|
sl@0
|
71 |
*
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
class CMMFPcm16ToPcm16Codec : public CMMFSwCodec
|
sl@0
|
74 |
{
|
sl@0
|
75 |
public:
|
sl@0
|
76 |
virtual TCodecProcessResult ProcessL(const CMMFBuffer& /*aSource*/, CMMFBuffer& /*aDest*/);
|
sl@0
|
77 |
// virtual TUint SourceBufferSize() {return KPCM16ToPCM16BufferSize;};
|
sl@0
|
78 |
// virtual TUint SinkBufferSize() {return KPCM16ToPCM16BufferSize;};
|
sl@0
|
79 |
virtual TUint SourceBufferSize();
|
sl@0
|
80 |
virtual TUint SinkBufferSize();
|
sl@0
|
81 |
virtual TBool IsNullCodec() {return ETrue;};
|
sl@0
|
82 |
|
sl@0
|
83 |
void SetHwDevice(CMMFPcm16ToPcm16HwDevice* aHwDevice);
|
sl@0
|
84 |
private:
|
sl@0
|
85 |
TUint iBufferSize;
|
sl@0
|
86 |
CMMFPcm16ToPcm16HwDevice* iHwDevice;
|
sl@0
|
87 |
};
|
sl@0
|
88 |
|
sl@0
|
89 |
#endif //__MMF_PCM16_TO_PCM16_HW_DEVICE_H__
|
sl@0
|
90 |
|