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 #include "webrtc/modules/audio_processing/level_controller/peak_level_estimator. h" | |
12 | |
13 #include <algorithm> | |
14 | |
15 #include "webrtc/modules/audio_processing/audio_buffer.h" | |
16 #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" | |
17 | |
18 namespace webrtc { | |
19 | |
20 PeakLevelEstimator::PeakLevelEstimator() { | |
21 Initialize(); | |
22 } | |
23 | |
24 PeakLevelEstimator::~PeakLevelEstimator() {} | |
25 | |
26 void PeakLevelEstimator::Initialize() { | |
27 peak_level_ = 32767.f; | |
28 } | |
29 | |
30 float PeakLevelEstimator::Analyze(SignalClassifier::SignalType signal_type, | |
31 float frame_peak_level) { | |
32 if (frame_peak_level > 0) { | |
33 if (peak_level_ < frame_peak_level) { | |
34 // Smoothly update the estimate upwards when there frame peak level is | |
hlundin-webrtc
2016/06/27 11:21:16
there -> the
peah-webrtc
2016/06/27 22:51:50
Done.
| |
35 // higher than the estimate. | |
36 peak_level_ += 0.1f * (frame_peak_level - peak_level_); | |
37 } else { | |
38 // When the signal is highly non-stationary, update the estimate slowly | |
39 // downwards | |
40 // if the estimate is lower than the frame peak level | |
hlundin-webrtc
2016/06/27 11:21:16
Weird line-wrapping, and end the sentence with a p
peah-webrtc
2016/06/27 22:51:50
Done.
| |
41 if (signal_type == SignalClassifier::SignalType::kHighlyNonStationary && | |
42 peak_level_ > frame_peak_level) { | |
hlundin-webrtc
2016/06/27 11:21:16
You already know that peak_level_ >= frame_peak_le
peah-webrtc
2016/06/27 22:51:50
Good find!
Done.
| |
43 peak_level_ += 0.05f * (frame_peak_level - peak_level_); | |
44 } | |
45 } | |
46 } | |
47 | |
48 peak_level_ = std::max(peak_level_, 30.f); | |
49 | |
50 return peak_level_; | |
51 } | |
52 | |
53 } // namespace webrtc | |
OLD | NEW |