summaryrefslogtreecommitdiffstats
path: root/audio/effect/7.0/IEnvironmentalReverbEffect.hal
blob: e02cfbceb33f8d45de59108fec5ca3a8643e72b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.hardware.audio.effect@7.0;

import android.hardware.audio.common@7.0;
import IEffect;

interface IEnvironmentalReverbEffect extends IEffect {
    /**
     * Sets whether the effect should be bypassed.
     */
    setBypass(bool bypass) generates (Result retval);

    /**
     * Gets whether the effect should be bypassed.
     */
    getBypass() generates (Result retval, bool bypass);

    enum ParamRange : int16_t {
        ROOM_LEVEL_MIN = -6000,
        ROOM_LEVEL_MAX = 0,
        ROOM_HF_LEVEL_MIN = -4000,
        ROOM_HF_LEVEL_MAX = 0,
        DECAY_TIME_MIN = 100,
        DECAY_TIME_MAX = 20000,
        DECAY_HF_RATIO_MIN = 100,
        DECAY_HF_RATIO_MAX = 1000,
        REFLECTIONS_LEVEL_MIN = -6000,
        REFLECTIONS_LEVEL_MAX = 0,
        REFLECTIONS_DELAY_MIN = 0,
        REFLECTIONS_DELAY_MAX = 65,
        REVERB_LEVEL_MIN = -6000,
        REVERB_LEVEL_MAX = 0,
        REVERB_DELAY_MIN = 0,
        REVERB_DELAY_MAX = 65,
        DIFFUSION_MIN = 0,
        DIFFUSION_MAX = 1000,
        DENSITY_MIN = 0,
        DENSITY_MAX = 1000
    };

    /**
     * Sets the room level.
     */
    setRoomLevel(int16_t roomLevel) generates (Result retval);

    /**
     * Gets the room level.
     */
    getRoomLevel() generates (Result retval, int16_t roomLevel);

    /**
     * Sets the room high frequencies level.
     */
    setRoomHfLevel(int16_t roomHfLevel) generates (Result retval);

    /**
     * Gets the room high frequencies level.
     */
    getRoomHfLevel() generates (Result retval, int16_t roomHfLevel);

    /**
     * Sets the room decay time.
     */
    setDecayTime(uint32_t decayTime) generates (Result retval);

    /**
     * Gets the room decay time.
     */
    getDecayTime() generates (Result retval, uint32_t decayTime);

    /**
     * Sets the ratio of high frequencies decay.
     */
    setDecayHfRatio(int16_t decayHfRatio) generates (Result retval);

    /**
     * Gets the ratio of high frequencies decay.
     */
    getDecayHfRatio() generates (Result retval, int16_t decayHfRatio);

    /**
     * Sets the level of reflections in the room.
     */
    setReflectionsLevel(int16_t reflectionsLevel) generates (Result retval);

    /**
     * Gets the level of reflections in the room.
     */
    getReflectionsLevel() generates (Result retval, int16_t reflectionsLevel);

    /**
     * Sets the reflections delay in the room.
     */
    setReflectionsDelay(uint32_t reflectionsDelay) generates (Result retval);

    /**
     * Gets the reflections delay in the room.
     */
    getReflectionsDelay() generates (Result retval, uint32_t reflectionsDelay);

    /**
     * Sets the reverb level of the room.
     */
    setReverbLevel(int16_t reverbLevel) generates (Result retval);

    /**
     * Gets the reverb level of the room.
     */
    getReverbLevel() generates (Result retval, int16_t reverbLevel);

    /**
     * Sets the reverb delay of the room.
     */
    setReverbDelay(uint32_t reverDelay) generates (Result retval);

    /**
     * Gets the reverb delay of the room.
     */
    getReverbDelay() generates (Result retval, uint32_t reverbDelay);

    /**
     * Sets room diffusion.
     */
    setDiffusion(int16_t diffusion) generates (Result retval);

    /**
     * Gets room diffusion.
     */
    getDiffusion() generates (Result retval, int16_t diffusion);

    /**
     * Sets room wall density.
     */
    setDensity(int16_t density) generates (Result retval);

    /**
     * Gets room wall density.
     */
    getDensity() generates (Result retval, int16_t density);

    struct AllProperties {
        int16_t  roomLevel;         // in millibels,    range -6000 to 0
        int16_t  roomHfLevel;       // in millibels,    range -4000 to 0
        uint32_t decayTime;         // in milliseconds, range 100 to 20000
        int16_t  decayHfRatio;      // in permilles,    range 100 to 1000
        int16_t  reflectionsLevel;  // in millibels,    range -6000 to 0
        uint32_t reflectionsDelay;  // in milliseconds, range 0 to 65
        int16_t  reverbLevel;       // in millibels,    range -6000 to 0
        uint32_t reverbDelay;       // in milliseconds, range 0 to 65
        int16_t  diffusion;         // in permilles,    range 0 to 1000
        int16_t  density;           // in permilles,    range 0 to 1000
    };

    /**
     * Sets all properties at once.
     */
    setAllProperties(AllProperties properties) generates (Result retval);

    /**
     * Gets all properties at once.
     */
    getAllProperties() generates (Result retval, AllProperties properties);
};