equal
deleted
inserted
replaced
|
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 * stereo widening. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef TEFSTEREOWIDENINGDATA_H |
|
22 #define TEFSTEREOWIDENINGDATA_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32std.h> |
|
26 #include <AudioEffectData.h> |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * This class defines the effect data structure to be passed between client and |
|
31 * server. |
|
32 * |
|
33 * @lib StereoWideningEffect.lib |
|
34 * @since 3.0 |
|
35 */ |
|
36 class TEfStereoWidening : public TEfCommon |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * Constructor. |
|
42 */ |
|
43 TEfStereoWidening() {} |
|
44 |
|
45 /** |
|
46 * Constructor. |
|
47 */ |
|
48 TEfStereoWidening( TUint8 aLevel, TBool aContinuousLevelSupported ) : |
|
49 iLevel(aLevel), iContinuousLevelSupported(aContinuousLevelSupported) {} |
|
50 |
|
51 // Data |
|
52 // Stereo widening level |
|
53 TUint8 iLevel; |
|
54 TBool iContinuousLevelSupported; |
|
55 }; |
|
56 |
|
57 typedef TPckgBuf<TEfStereoWidening> TEfStereoWideningDataPckg; |
|
58 |
|
59 #endif // TEFSTEREOWIDENINGDATA_H |
|
60 |
|
61 // End of File |