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_LEVEL_CONTROLLER_H_ | |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_LEVEL_CONTROLLER_H_ | |
13 | |
14 #include <memory> | |
15 #include <vector> | |
16 | |
17 // TODO(peah): Try to remove. | |
18 #include "webrtc/base/constructormagic.h" | |
19 | |
20 namespace webrtc { | |
21 | |
22 class ApmDataDumper; | |
23 class AudioBuffer; | |
24 class GainApplier; | |
25 class GainSelector; | |
26 class NoiseLevelEstimator; | |
27 class PeakLevelEstimator; | |
28 class SaturatingGainEstimator; | |
29 class SignalClassifier; | |
30 | |
31 class LevelController { | |
32 public: | |
33 LevelController(); | |
34 ~LevelController(); | |
35 | |
36 void Initialize(int sample_rate_hz, size_t num_channels_); | |
hlundin-webrtc
2016/06/27 11:21:15
No trailing underscore on parameter names.
peah-webrtc
2016/06/27 22:51:48
Done.
| |
37 void Process(AudioBuffer* audio); | |
38 | |
39 private: | |
40 std::unique_ptr<ApmDataDumper> data_dumper_; | |
hlundin-webrtc
2016/06/27 11:21:15
Are you using unique_ptrs just to be able to forwa
peah-webrtc
2016/06/27 22:51:48
Good point! That I definitely do. I'll change that
| |
41 std::unique_ptr<GainSelector> gain_selector_; | |
42 std::unique_ptr<GainApplier> gain_applier_; | |
43 std::unique_ptr<SignalClassifier> signal_classifier_; | |
44 std::unique_ptr<NoiseLevelEstimator> noise_level_estimator_; | |
45 std::unique_ptr<PeakLevelEstimator> peak_level_estimator_; | |
46 std::unique_ptr<SaturatingGainEstimator> saturating_gain_estimator_; | |
47 int sample_rate_hz_ = 8000; | |
48 static int instance_count_; | |
49 float dc_level_[2]; | |
50 | |
51 RTC_DISALLOW_COPY_AND_ASSIGN(LevelController); | |
52 }; | |
53 | |
54 } // namespace webrtc | |
55 | |
56 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_LEVEL_CONTROLLER_H_ | |
OLD | NEW |