Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: webrtc/modules/audio_processing/audio_processing_impl.h

Issue 1768943002: Removed the dependency in GainControlImpl on the ProcessingComponent class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@RemoveComponentFromAECM_CL
Patch Set: Changes in response to reviewer comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 void InitializeHighPassFilter() 191 void InitializeHighPassFilter()
192 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 192 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
193 void InitializeNoiseSuppression() 193 void InitializeNoiseSuppression()
194 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 194 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
195 void InitializeLevelEstimator() 195 void InitializeLevelEstimator()
196 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 196 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
197 void InitializeVoiceDetection() 197 void InitializeVoiceDetection()
198 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 198 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
199 void InitializeEchoCanceller() 199 void InitializeEchoCanceller()
200 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 200 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_);
201 void InitializeGainController()
202 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_);
201 void InitializeEchoControlMobile() 203 void InitializeEchoControlMobile()
202 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 204 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_);
203 int InitializeLocked(const ProcessingConfig& config) 205 int InitializeLocked(const ProcessingConfig& config)
204 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_); 206 EXCLUSIVE_LOCKS_REQUIRED(crit_render_, crit_capture_);
205 207
206 // Capture-side exclusive methods possibly running APM in a multi-threaded 208 // Capture-side exclusive methods possibly running APM in a multi-threaded
207 // manner that are called with the render lock already acquired. 209 // manner that are called with the render lock already acquired.
208 int ProcessStreamLocked() EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 210 int ProcessStreamLocked() EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
209 bool output_copy_needed(bool is_data_processed) const 211 bool output_copy_needed(bool is_data_processed) const
210 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_); 212 EXCLUSIVE_LOCKS_REQUIRED(crit_capture_);
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 344
343 struct ApmRenderState { 345 struct ApmRenderState {
344 std::unique_ptr<AudioConverter> render_converter; 346 std::unique_ptr<AudioConverter> render_converter;
345 std::unique_ptr<AudioBuffer> render_audio; 347 std::unique_ptr<AudioBuffer> render_audio;
346 } render_ GUARDED_BY(crit_render_); 348 } render_ GUARDED_BY(crit_render_);
347 }; 349 };
348 350
349 } // namespace webrtc 351 } // namespace webrtc
350 352
351 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ 353 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698