OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2017 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_AGC2_GAIN_CONTROLLER2_H_ | |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_GAIN_CONTROLLER2_H_ | |
13 | |
14 #include <memory> | |
15 #include <string> | |
16 | |
17 #include "webrtc/base/constructormagic.h" | |
18 #include "webrtc/modules/audio_processing/include/audio_processing.h" | |
19 #include "webrtc/modules/audio_processing/level_controller/gain_applier.h" | |
peah-webrtc
2017/05/16 13:06:58
I don't think we should reuse level_controller cod
AleBzk
2017/05/18 08:31:37
Thanks for this comment.
I wrote a new class named
peah-webrtc
2017/05/18 10:51:18
That sounds good.
| |
20 | |
21 namespace webrtc { | |
22 | |
23 class ApmDataDumper; | |
24 class AudioBuffer; | |
25 | |
26 // Gain Controller 2 aims to automatically adjusting levels by acting on the | |
27 // microphone gain and/or applying digital gain. It does not use the band split | |
peah-webrtc
2017/05/16 13:06:57
I don't think you should mention the band-split no
AleBzk
2017/05/18 08:31:37
Done.
| |
28 // filter, in order to avoid spectral leakage issues and unnecessary complexity. | |
29 // Finally, it only provides the floating point interface. | |
30 // | |
31 // It temporarily implements a hard-coded gain mode only. | |
32 class GainController2 { | |
33 public: | |
34 explicit GainController2(int sample_rate_hz); | |
35 ~GainController2(); | |
36 | |
37 void Process(AudioBuffer* audio); | |
38 | |
39 static bool Validate(const AudioProcessing::Config::GainController2& config); | |
40 static std::string ToString( | |
41 const AudioProcessing::Config::GainController2& config); | |
42 | |
43 private: | |
44 std::unique_ptr<ApmDataDumper> data_dumper_; | |
45 GainApplier gain_applier_; | |
46 static int instance_count_; | |
47 | |
48 // TODO(...): Remove once a meaningful gain controller mode is implemented. | |
peah-webrtc
2017/05/16 13:06:58
You need to have a name for the todo.
AleBzk
2017/05/18 08:31:37
Done.
| |
49 const float hard_coded_gain_; | |
peah-webrtc
2017/05/16 13:06:57
fixed_gain_ sounds better. WDYT?
AleBzk
2017/05/18 08:31:37
I started with that naming, but I didn't want the
peah-webrtc
2017/05/18 10:51:18
Np :-) At this stage, anything is actually fine si
| |
50 | |
peah-webrtc
2017/05/16 13:06:58
Please remove duplicate empty line.
AleBzk
2017/05/18 08:31:37
Done.
| |
51 | |
52 RTC_DISALLOW_COPY_AND_ASSIGN(GainController2); | |
53 }; | |
54 | |
55 } // namespace webrtc | |
56 | |
57 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_GAIN_CONTROLLER2_H_ | |
OLD | NEW |