| 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.
|
|
|