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

Unified Diff: webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc

Issue 2644123002: Adding full initial version of delay estimation functionality in echo canceller 3 (Closed)
Patch Set: Rebase Created 3 years, 10 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
« no previous file with comments | « webrtc/modules/audio_processing/aec3/render_delay_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc
diff --git a/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc b/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc
index 145f3a30427f09f51a08d22fe0564b76df867360..9d382adb0f0d43238a684d7aae9d8631f83bc513 100644
--- a/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc
+++ b/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc
@@ -105,8 +105,7 @@ TEST(RenderDelayController, BasicApiCalls) {
// Verifies that the RenderDelayController is able to align the signals for
// simple timeshifts between the signals.
-// TODO(peah): Activate the unittest once the required code has been landed.
-TEST(RenderDelayController, DISABLED_Alignment) {
+TEST(RenderDelayController, Alignment) {
Random random_generator(42U);
std::vector<float> render_block(kBlockSize, 0.f);
std::vector<float> capture_block(kBlockSize, 0.f);
@@ -148,8 +147,7 @@ TEST(RenderDelayController, DISABLED_Alignment) {
// Verifies that the RenderDelayController is able to align the signals for
// simple timeshifts between the signals when there is jitter in the API calls.
-// TODO(peah): Activate the unittest once the required code has been landed.
-TEST(RenderDelayController, DISABLED_AlignmentWithJitter) {
+TEST(RenderDelayController, AlignmentWithJitter) {
Random random_generator(42U);
std::vector<float> render_block(kBlockSize, 0.f);
std::vector<float> capture_block(kBlockSize, 0.f);
« no previous file with comments | « webrtc/modules/audio_processing/aec3/render_delay_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698