OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
118 // Sample history for the rolling window in kStepWindowed and block-wise | 118 // Sample history for the rolling window in kStepWindowed and block-wise |
119 // histories for kStepBlocked. | 119 // histories for kStepBlocked. |
120 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> history_; | 120 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> history_; |
121 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_; | 121 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_; |
122 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_sq_; | 122 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_sq_; |
123 | 123 |
124 // The current set of variances and sums for Welford's algorithm. | 124 // The current set of variances and sums for Welford's algorithm. |
125 rtc::scoped_ptr<float[]> variance_; | 125 rtc::scoped_ptr<float[]> variance_; |
126 rtc::scoped_ptr<float[]> conj_sum_; | 126 rtc::scoped_ptr<float[]> conj_sum_; |
127 | 127 |
128 const int freqs_; | 128 const int num_freqs_; |
129 const int window_size_; | 129 const int window_size_; |
130 const float decay_; | 130 const float decay_; |
131 int history_cursor_; | 131 int history_cursor_; |
132 int count_; | 132 int count_; |
133 float array_mean_; | 133 float array_mean_; |
134 bool buffer_full_; | 134 bool buffer_full_; |
135 void (VarianceArray::*step_func_)(const std::complex<float>*, bool); | 135 void (VarianceArray::*step_func_)(const std::complex<float>*, bool); |
136 }; | 136 }; |
137 | 137 |
138 // Helper class for smoothing gain changes. On each applicatiion step, the | 138 // Helper class for smoothing gain changes. On each applicatiion step, the |
139 // currently used gains are changed towards a set of settable target gains, | 139 // currently used gains are changed towards a set of settable target gains, |
140 // constrained by a limit on the magnitude of the changes. | 140 // constrained by a limit on the magnitude of the changes. |
141 class GainApplier { | 141 class GainApplier { |
142 public: | 142 public: |
143 GainApplier(int freqs, float change_limit); | 143 GainApplier(int freqs, float change_limit); |
144 | 144 |
145 // Copy |in_block| to |out_block|, multiplied by the current set of gains, | 145 // Copy |in_block| to |out_block|, multiplied by the current set of gains, |
146 // and step the current set of gains towards the target set. | 146 // and step the current set of gains towards the target set. |
147 void Apply(const std::complex<float>* in_block, | 147 void Apply(const std::complex<float>* in_block, |
148 std::complex<float>* out_block); | 148 std::complex<float>* out_block); |
149 | 149 |
150 // Resets all target gain factors to 1. | |
151 void Clear(); | |
152 | |
153 // Returns true if all current and target gain factors are 1. | |
154 bool IsIdentity(); | |
turaj
2015/07/27 20:01:05
This method is constant.
| |
155 | |
150 // Return the current target gain set. Modify this array to set the targets. | 156 // Return the current target gain set. Modify this array to set the targets. |
151 float* target() const { return target_.get(); } | 157 float* target() const { return target_.get(); } |
152 | 158 |
153 private: | 159 private: |
154 const int freqs_; | 160 const int num_freqs_; |
155 const float change_limit_; | 161 const float change_limit_; |
156 rtc::scoped_ptr<float[]> target_; | 162 rtc::scoped_ptr<float[]> target_; |
157 rtc::scoped_ptr<float[]> current_; | 163 rtc::scoped_ptr<float[]> current_; |
158 }; | 164 }; |
159 | 165 |
160 } // namespace intelligibility | 166 } // namespace intelligibility |
161 | 167 |
162 } // namespace webrtc | 168 } // namespace webrtc |
163 | 169 |
164 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INTELLIGIBILITY_INTELLIGIBILITY_UTILS _H_ | 170 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INTELLIGIBILITY_INTELLIGIBILITY_UTILS _H_ |
OLD | NEW |