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

Unified Diff: webrtc/modules/audio_processing/aec3/echo_canceller3.h

Issue 2784023002: Major AEC3 render pipeline changes (Closed)
Patch Set: Disabled one more DEATH test that caused issues due to bug on bots Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/aec3/echo_canceller3.h
diff --git a/webrtc/modules/audio_processing/aec3/echo_canceller3.h b/webrtc/modules/audio_processing/aec3/echo_canceller3.h
index f1a7f38b3a5965fb4f896373e4115ed5e42b68c8..aa19c05001509349af466f1cecf36077897ffbc6 100644
--- a/webrtc/modules/audio_processing/aec3/echo_canceller3.h
+++ b/webrtc/modules/audio_processing/aec3/echo_canceller3.h
@@ -71,7 +71,7 @@ class EchoCanceller3 {
~EchoCanceller3();
// Analyzes and stores an internal copy of the split-band domain render
// signal.
- bool AnalyzeRender(AudioBuffer* farend);
+ void AnalyzeRender(AudioBuffer* farend);
// Analyzes the full-band domain capture signal to detect signal saturation.
void AnalyzeCapture(AudioBuffer* capture);
// Processes the split-band domain capture signal in order to remove any echo
@@ -96,9 +96,8 @@ class EchoCanceller3 {
private:
class RenderWriter;
- // Empties the render SwapQueue. A bool is returned that indicates the success
- // of the operation.
- bool EmptyRenderQueue();
+ // Empties the render SwapQueue.
+ void EmptyRenderQueue();
rtc::RaceChecker capture_race_checker_;
rtc::RaceChecker render_race_checker_;

Powered by Google App Engine
This is Rietveld 408576698