| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 20 matching lines...) Expand all Loading... |
| 31 class CriticalSectionWrapper; | 31 class CriticalSectionWrapper; |
| 32 class EchoCancellationImpl; | 32 class EchoCancellationImpl; |
| 33 class EchoControlMobileImpl; | 33 class EchoControlMobileImpl; |
| 34 class FileWrapper; | 34 class FileWrapper; |
| 35 class GainControlImpl; | 35 class GainControlImpl; |
| 36 class GainControlForNewAgc; | 36 class GainControlForNewAgc; |
| 37 class HighPassFilterImpl; | 37 class HighPassFilterImpl; |
| 38 class LevelEstimatorImpl; | 38 class LevelEstimatorImpl; |
| 39 class NoiseSuppressionImpl; | 39 class NoiseSuppressionImpl; |
| 40 class ProcessingComponent; | 40 class ProcessingComponent; |
| 41 class RepetitionDetector; |
| 41 class TransientSuppressor; | 42 class TransientSuppressor; |
| 42 class VoiceDetectionImpl; | 43 class VoiceDetectionImpl; |
| 43 class IntelligibilityEnhancer; | 44 class IntelligibilityEnhancer; |
| 44 | 45 |
| 45 #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP | 46 #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP |
| 46 namespace audioproc { | 47 namespace audioproc { |
| 47 | 48 |
| 48 class Event; | 49 class Event; |
| 49 | 50 |
| 50 } // namespace audioproc | 51 } // namespace audioproc |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 const bool use_new_agc_; | 199 const bool use_new_agc_; |
| 199 rtc::scoped_ptr<AgcManagerDirect> agc_manager_ GUARDED_BY(crit_); | 200 rtc::scoped_ptr<AgcManagerDirect> agc_manager_ GUARDED_BY(crit_); |
| 200 int agc_startup_min_volume_; | 201 int agc_startup_min_volume_; |
| 201 | 202 |
| 202 bool transient_suppressor_enabled_; | 203 bool transient_suppressor_enabled_; |
| 203 rtc::scoped_ptr<TransientSuppressor> transient_suppressor_; | 204 rtc::scoped_ptr<TransientSuppressor> transient_suppressor_; |
| 204 const bool beamformer_enabled_; | 205 const bool beamformer_enabled_; |
| 205 rtc::scoped_ptr<Beamformer<float>> beamformer_; | 206 rtc::scoped_ptr<Beamformer<float>> beamformer_; |
| 206 const std::vector<Point> array_geometry_; | 207 const std::vector<Point> array_geometry_; |
| 207 | 208 |
| 209 rtc::scoped_ptr<RepetitionDetector> repetition_detector_ |
| 210 GUARDED_BY(crit_); |
| 208 bool intelligibility_enabled_; | 211 bool intelligibility_enabled_; |
| 209 rtc::scoped_ptr<IntelligibilityEnhancer> intelligibility_enhancer_; | 212 rtc::scoped_ptr<IntelligibilityEnhancer> intelligibility_enhancer_; |
| 210 }; | 213 }; |
| 211 | 214 |
| 212 } // namespace webrtc | 215 } // namespace webrtc |
| 213 | 216 |
| 214 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ | 217 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ |
| OLD | NEW |