Searched refs:crit_capture_ (Results 1 – 8 of 8) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/ |
D | gain_control_impl.h | 79 rtc::CriticalSection* const crit_render_ ACQUIRED_BEFORE(crit_capture_); 80 rtc::CriticalSection* const crit_capture_; variable 82 Mode mode_ GUARDED_BY(crit_capture_); 83 int minimum_capture_level_ GUARDED_BY(crit_capture_); 84 int maximum_capture_level_ GUARDED_BY(crit_capture_); 85 bool limiter_enabled_ GUARDED_BY(crit_capture_); 86 int target_level_dbfs_ GUARDED_BY(crit_capture_); 87 int compression_gain_db_ GUARDED_BY(crit_capture_); 88 std::vector<int> capture_levels_ GUARDED_BY(crit_capture_); 89 int analog_capture_level_ GUARDED_BY(crit_capture_); [all …]
|
D | audio_processing_impl.h | 110 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 128 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 179 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 181 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 183 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 185 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 187 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 189 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 191 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 193 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); [all …]
|
D | echo_cancellation_impl.h | 83 rtc::CriticalSection* const crit_render_ ACQUIRED_BEFORE(crit_capture_); 84 rtc::CriticalSection* const crit_capture_; variable 86 bool drift_compensation_enabled_ GUARDED_BY(crit_capture_); 87 bool metrics_enabled_ GUARDED_BY(crit_capture_); 88 SuppressionLevel suppression_level_ GUARDED_BY(crit_capture_); 89 int stream_drift_samples_ GUARDED_BY(crit_capture_); 90 bool was_stream_drift_set_ GUARDED_BY(crit_capture_); 91 bool stream_has_echo_ GUARDED_BY(crit_capture_); 92 bool delay_logging_enabled_ GUARDED_BY(crit_capture_); 93 bool extended_filter_enabled_ GUARDED_BY(crit_capture_); [all …]
|
D | gain_control_impl.cc | 51 crit_capture_(crit_capture), in GainControlImpl() 107 rtc::CritScope cs(crit_capture_); in ReadQueuedRenderData() 128 rtc::CritScope cs(crit_capture_); in AnalyzeCaptureAudio() 180 rtc::CritScope cs(crit_capture_); in ProcessCaptureAudio() 238 rtc::CritScope cs(crit_capture_); in set_stream_analog_level() 250 rtc::CritScope cs(crit_capture_); in stream_analog_level() 259 rtc::CritScope cs_capture(crit_capture_); in Enable() 264 rtc::CritScope cs(crit_capture_); in is_enabled() 270 rtc::CritScope cs_capture(crit_capture_); in set_mode() 280 rtc::CritScope cs(crit_capture_); in mode() [all …]
|
D | echo_cancellation_impl.cc | 70 crit_capture_(crit_capture), in EchoCancellationImpl() 138 rtc::CritScope cs_capture(crit_capture_); in ReadQueuedRenderData() 163 rtc::CritScope cs_capture(crit_capture_); in ProcessCaptureAudio() 221 rtc::CritScope cs_capture(crit_capture_); in Enable() 233 rtc::CritScope cs(crit_capture_); in is_enabled() 242 rtc::CritScope cs(crit_capture_); in set_suppression_level() 250 rtc::CritScope cs(crit_capture_); in suppression_level() 256 rtc::CritScope cs(crit_capture_); in enable_drift_compensation() 263 rtc::CritScope cs(crit_capture_); in is_drift_compensation_enabled() 268 rtc::CritScope cs(crit_capture_); in set_stream_drift_samples() [all …]
|
D | echo_control_mobile_impl.cc | 76 crit_capture_(crit_capture), in EchoControlMobileImpl() 142 rtc::CritScope cs_capture(crit_capture_); in ReadQueuedRenderData() 168 rtc::CritScope cs_capture(crit_capture_); in ProcessCaptureAudio() 217 rtc::CritScope cs_capture(crit_capture_); in Enable() 228 rtc::CritScope cs(crit_capture_); in is_enabled() 238 rtc::CritScope cs(crit_capture_); in set_routing_mode() 246 rtc::CritScope cs(crit_capture_); in routing_mode() 252 rtc::CritScope cs(crit_capture_); in enable_comfort_noise() 259 rtc::CritScope cs(crit_capture_); in is_comfort_noise_enabled() 267 rtc::CritScope cs_capture(crit_capture_); in SetEchoPath() [all …]
|
D | echo_control_mobile_impl.h | 69 rtc::CriticalSection* const crit_render_ ACQUIRED_BEFORE(crit_capture_); 70 rtc::CriticalSection* const crit_capture_; variable 72 RoutingMode routing_mode_ GUARDED_BY(crit_capture_); 73 bool comfort_noise_enabled_ GUARDED_BY(crit_capture_); 75 GUARDED_BY(crit_capture_); 78 GUARDED_BY(crit_capture_); 81 std::vector<int16_t> capture_queue_buffer_ GUARDED_BY(crit_capture_);
|
D | audio_processing_impl.cc | 235 rtc::CritScope cs_capture(&crit_capture_); in AudioProcessingImpl() 238 new EchoCancellationImpl(this, &crit_render_, &crit_capture_); in AudioProcessingImpl() 240 new EchoControlMobileImpl(this, &crit_render_, &crit_capture_); in AudioProcessingImpl() 242 new GainControlImpl(this, &crit_capture_, &crit_capture_); in AudioProcessingImpl() 244 new HighPassFilterImpl(&crit_capture_)); in AudioProcessingImpl() 246 new LevelEstimatorImpl(&crit_capture_)); in AudioProcessingImpl() 248 new NoiseSuppressionImpl(&crit_capture_)); in AudioProcessingImpl() 250 new VoiceDetectionImpl(&crit_capture_)); in AudioProcessingImpl() 289 rtc::CritScope cs_capture(&crit_capture_); in Initialize() 319 rtc::CritScope cs_capture(&crit_capture_); in Initialize() [all …]
|