Index: webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h |
diff --git a/webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h b/webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d9a28385288a8136d9b37ec81836508a7270dc91 |
--- /dev/null |
+++ b/webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h |
@@ -0,0 +1,30 @@ |
+/* |
+ * 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. |
+ */ |
+ |
+#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_DOWNSAMPLED_RENDER_BUFFER_H_ |
+#define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_DOWNSAMPLED_RENDER_BUFFER_H_ |
+ |
+#include <array> |
+ |
+#include "webrtc/modules/audio_processing/aec3/aec3_common.h" |
+ |
+namespace webrtc { |
+ |
+// Holds the circular buffer of the downsampled render data. |
+struct DownsampledRenderBuffer { |
+ DownsampledRenderBuffer(); |
+ ~DownsampledRenderBuffer(); |
+ std::array<float, kDownsampledRenderBufferSize> buffer; |
ivoc
2017/04/03 16:09:07
I think it should work to add " = {}" to initializ
aleloi
2017/04/04 12:18:50
Or replace with '= default' if the clang plugin co
peah-webrtc
2017/04/04 13:57:11
Acknowledged.
peah-webrtc
2017/04/04 13:57:11
Great! Thanks! The initialization works but clang
|
+ int position = 0; |
+}; |
+ |
+} // namespace webrtc |
+ |
+#endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_DOWNSAMPLED_RENDER_BUFFER_H_ |