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

Unified Diff: webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.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/mock/mock_echo_remover.h
diff --git a/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h b/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h
index 6cde439ed6f8b3ab4edceaf3e649ec1c4deebdd6..b016a7f5d5c60302e00da5e2074202aa7906f74c 100644
--- a/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h
+++ b/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h
@@ -16,6 +16,7 @@
#include "webrtc/base/optional.h"
#include "webrtc/modules/audio_processing/aec3/echo_path_variability.h"
#include "webrtc/modules/audio_processing/aec3/echo_remover.h"
+#include "webrtc/modules/audio_processing/aec3/render_buffer.h"
#include "webrtc/test/gmock.h"
namespace webrtc {
@@ -25,11 +26,11 @@ class MockEchoRemover : public EchoRemover {
public:
virtual ~MockEchoRemover() = default;
- MOCK_METHOD5(ProcessBlock,
+ MOCK_METHOD5(ProcessCapture,
void(const rtc::Optional<size_t>& echo_path_delay_samples,
const EchoPathVariability& echo_path_variability,
bool capture_signal_saturation,
- const std::vector<std::vector<float>>& render,
+ const RenderBuffer& render_buffer,
std::vector<std::vector<float>>* capture));
MOCK_METHOD1(UpdateEchoLeakageStatus, void(bool leakage_detected));

Powered by Google App Engine
This is Rietveld 408576698