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

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

Issue 2784023002: Major AEC3 render pipeline changes (Closed)
Patch Set: 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/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..4cb0354182b8de2f57c7e4f620b0e5992a8acee4 100644
--- a/webrtc/modules/audio_processing/aec3/block_processor.h
+++ b/webrtc/modules/audio_processing/aec3/block_processor.h
@@ -42,9 +42,8 @@ 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(std::vector<std::vector<float>>* render_block) = 0;
// Reports whether echo leakage has been detected in the echo canceller
// output.

Powered by Google App Engine
This is Rietveld 408576698