Index: webrtc/modules/audio_processing/include/aec_dump.cc |
diff --git a/webrtc/modules/audio_processing/include/aec_dump.cc b/webrtc/modules/audio_processing/include/aec_dump.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..76f07b9eac30974c244d30e16b8a0d1a28d1eb5d |
--- /dev/null |
+++ b/webrtc/modules/audio_processing/include/aec_dump.cc |
@@ -0,0 +1,26 @@ |
+/* |
+ * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * Use of this source code is governed by a BSD-style license |
+ * that can be found in the LICENSE file in the root of the source |
+ * tree. An additional intellectual property rights grant can be found |
+ * in the file PATENTS. All contributing project authors may |
+ * be found in the AUTHORS file in the root of the source tree. |
+ */ |
+ |
+#include "webrtc/modules/audio_processing/include/aec_dump.h" |
+ |
+namespace webrtc { |
+ |
+InternalAPMConfig::InternalAPMConfig() = default; |
+ |
+std::unique_ptr<AecDump::CaptureStreamInfo> |
+NullAecDump::GetCaptureStreamInfo() { |
+ return std::unique_ptr<AecDump::CaptureStreamInfo>( |
+ new NullCaptureStreamInfo()); |
+} |
+ |
+std::unique_ptr<AecDump> AecDump::CreateNullDump() { |
+ return std::unique_ptr<NullAecDump>(new NullAecDump()); |
+} |
+} // namespace webrtc |