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

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

Issue 2784023002: Major AEC3 render pipeline changes (Closed)
Patch Set: Changes in response to reviewer comments Created 3 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698