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

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

Issue 2678423005: Finalization of the first version of EchoCanceller 3 (Closed)
Patch Set: Fixed compilation error Created 3 years, 10 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_path_variability.h
diff --git a/webrtc/modules/audio_processing/aec3/echo_path_variability.h b/webrtc/modules/audio_processing/aec3/echo_path_variability.h
index 070887964d1a4a0a45144cc837ac4b2eb78ad69c..7755362787cb65d7dfd11c9abf5d752846c2a27f 100644
--- a/webrtc/modules/audio_processing/aec3/echo_path_variability.h
+++ b/webrtc/modules/audio_processing/aec3/echo_path_variability.h
@@ -14,8 +14,7 @@
namespace webrtc {
struct EchoPathVariability {
- EchoPathVariability(bool gain_change, bool delay_change)
- : gain_change(gain_change), delay_change(delay_change) {}
+ EchoPathVariability(bool gain_change, bool delay_change);
bool AudioPathChanged() const { return gain_change || delay_change; }
bool gain_change;

Powered by Google App Engine
This is Rietveld 408576698