OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license | |
5 * that can be found in the LICENSE file in the root of the source | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_APPLIER_H_ | |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_APPLIER_H_ | |
13 | |
14 #include "webrtc/base/constructormagic.h" | |
15 | |
16 namespace webrtc { | |
17 | |
18 class ApmDataDumper; | |
19 class AudioBuffer; | |
20 | |
21 class GainApplier { | |
22 public: | |
23 explicit GainApplier(ApmDataDumper* data_dumper); | |
24 void Initialize(int sample_rate_hz); | |
25 int Process(float new_gain, AudioBuffer* audio); | |
aleloi
2016/06/28 09:40:01
Please document that Process counts saturations.
peah-webrtc
2016/06/28 22:19:37
Good point!
Done.
| |
26 | |
27 private: | |
28 ApmDataDumper* data_dumper_; | |
aleloi
2016/06/28 09:35:52
Since data_dumper_ is set only once in the constru
peah-webrtc
2016/06/28 22:19:37
Good point! That is correct!
Done.
| |
29 float old_gain_ = 1.f; | |
30 float gain_change_step_size_ = 0.f; | |
31 | |
32 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(GainApplier); | |
33 }; | |
34 | |
35 } // namespace webrtc | |
36 | |
37 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_APPLIER_H_ | |
OLD | NEW |