0
|
1 |
/*
|
|
2 |
* Copyright (c) 2004 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: This file contains definitions of audio effects data structures for
|
|
15 |
* Reverb.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
#ifndef TEFENVIRONMENTALREVERB_H
|
|
22 |
#define TEFENVIRONMENTALREVERB_H
|
|
23 |
|
|
24 |
// INCLUDES
|
|
25 |
#include <e32std.h>
|
|
26 |
#include <AudioEffectData.h>
|
|
27 |
|
|
28 |
// CLASS DECLARATION
|
|
29 |
|
|
30 |
/**
|
|
31 |
* This class defines the effect data structure to be passed between client and
|
|
32 |
* server.
|
|
33 |
*
|
|
34 |
* @lib EnvironmentalReverbEffect.lib
|
|
35 |
* @since 3.0
|
|
36 |
*/
|
|
37 |
class TEfEnvironmentalReverb : public TEfCommon
|
|
38 |
{
|
|
39 |
public:
|
|
40 |
|
|
41 |
/**
|
|
42 |
* Constructor.
|
|
43 |
*/
|
|
44 |
TEfEnvironmentalReverb() {}
|
|
45 |
|
|
46 |
// Data
|
|
47 |
// Reverb values of a Reverb object
|
|
48 |
|
|
49 |
TUint32 iDecayHFRatio;
|
|
50 |
TUint32 iDecayHFRatioMin;
|
|
51 |
TUint32 iDecayHFRatioMax;
|
|
52 |
TUint32 iDecayTime;
|
|
53 |
TUint32 iDecayTimeMin;
|
|
54 |
TUint32 iDecayTimeMax;
|
|
55 |
TUint32 iDensity;
|
|
56 |
TUint32 iDiffusion;
|
|
57 |
TInt32 iReflectionsLevel;
|
|
58 |
TInt32 iReflectionLevelMin;
|
|
59 |
TInt32 iReflectionLevelMax;
|
|
60 |
TUint32 iReflectionsDelay;
|
|
61 |
TUint32 iReflectionsDelayMax;
|
|
62 |
TUint32 iReverbDelay;
|
|
63 |
TUint32 iReverbDelayMax;
|
|
64 |
TInt32 iReverbLevel;
|
|
65 |
TInt32 iReverbLevelMin;
|
|
66 |
TInt32 iReverbLevelMax;
|
|
67 |
TInt32 iRoomHFLevel;
|
|
68 |
TInt32 iRoomHFLevelMin;
|
|
69 |
TInt32 iRoomHFLevelMax;
|
|
70 |
TInt32 iRoomLevel;
|
|
71 |
TInt32 iRoomLevelMin;
|
|
72 |
TInt32 iRoomLevelMax;
|
|
73 |
TUint32 iDelayMax;
|
|
74 |
TUint32 iEnvironmentalReverbId;
|
|
75 |
|
|
76 |
};
|
|
77 |
|
|
78 |
typedef TPckgBuf<TEfEnvironmentalReverb> TEfEnvReverbDataPckg;
|
|
79 |
|
|
80 |
#endif // TEFENVIRONMENTALREVERB_H
|
|
81 |
|
|
82 |
// End of File
|