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

Unified Diff: webrtc/modules/audio_processing/aec3/block_processor.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/block_processor.h
diff --git a/webrtc/modules/audio_processing/aec3/block_processor.h b/webrtc/modules/audio_processing/aec3/block_processor.h
index 12a994e609d6103cc4bb9d00350f09949f314040..830fec7e6635d1814df67e6a071694f7993fad75 100644
--- a/webrtc/modules/audio_processing/aec3/block_processor.h
+++ b/webrtc/modules/audio_processing/aec3/block_processor.h
@@ -42,9 +42,9 @@ class BlockProcessor {
bool capture_signal_saturation,
std::vector<std::vector<float>>* capture_block) = 0;
- // Buffers a block of render data supplied by a FrameBlocker object. Returns a
- // bool indicating the success of the buffering.
- virtual bool BufferRender(std::vector<std::vector<float>>* render_block) = 0;
+ // Buffers a block of render data supplied by a FrameBlocker object.
+ virtual void BufferRender(
+ const std::vector<std::vector<float>>& render_block) = 0;
// Reports whether echo leakage has been detected in the echo canceller
// output.
« no previous file with comments | « webrtc/modules/audio_processing/aec3/aec_state_unittest.cc ('k') | webrtc/modules/audio_processing/aec3/block_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698