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 * RoomLevel. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef TEFROOMLEVEL_H |
|
22 #define TEFROOMLEVEL_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32std.h> |
|
26 #include <AudioEffectData.h> |
|
27 |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 /** |
|
32 * This class defines the effect data structure to be passed between client and |
|
33 * server. |
|
34 * |
|
35 * @lib RoomLevelEffect.lib |
|
36 * @since 3.0 |
|
37 */ |
|
38 class TEfRoomLevel : public TEfCommon |
|
39 { |
|
40 public: |
|
41 |
|
42 /** |
|
43 * Constructor. |
|
44 */ |
|
45 TEfRoomLevel() {} |
|
46 |
|
47 // Data |
|
48 // RoomLevel values of a RoomLevel object |
|
49 |
|
50 TUint32 iEnvironmentalReverbId; |
|
51 TInt32 iStreamRoomLevel; |
|
52 TInt32 iStreamMinRoomLevel; |
|
53 TInt32 iStreamMaxRoomLevel; |
|
54 }; |
|
55 |
|
56 typedef TPckgBuf<TEfRoomLevel> TEfRoomLevelDataPckg; |
|
57 |
|
58 #endif // TEFROOMLEVEL_H |
|
59 |
|
60 // End of File |