Allow extracting the linear AEC output
This CL enables extracting the linear AEC output, allowing for more straightforward testing/development. Bug: b/140823178 Change-Id: I14f7934008d87066b35500466cb6e6d96f811688 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153672 Commit-Queue: Per Åhgren <peah@webrtc.org> Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29789}
This commit is contained in:
@ -2425,7 +2425,8 @@ class MyEchoControlFactory : public EchoControlFactory {
|
||||
auto ec = new test::MockEchoControl();
|
||||
EXPECT_CALL(*ec, AnalyzeRender(::testing::_)).Times(1);
|
||||
EXPECT_CALL(*ec, AnalyzeCapture(::testing::_)).Times(2);
|
||||
EXPECT_CALL(*ec, ProcessCapture(::testing::_, ::testing::_)).Times(2);
|
||||
EXPECT_CALL(*ec, ProcessCapture(::testing::_, ::testing::_, ::testing::_))
|
||||
.Times(2);
|
||||
return std::unique_ptr<EchoControl>(ec);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user