| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "webrtc/base/array_view.h" | |
| 13 #include "webrtc/modules/audio_processing/audio_buffer.h" | 12 #include "webrtc/modules/audio_processing/audio_buffer.h" |
| 14 #include "webrtc/modules/audio_processing/echo_cancellation_impl.h" | 13 #include "webrtc/modules/audio_processing/echo_cancellation_impl.h" |
| 15 #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" | 14 #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" |
| 16 #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" | 15 #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" |
| 16 #include "webrtc/rtc_base/array_view.h" |
| 17 #include "webrtc/test/gtest.h" | 17 #include "webrtc/test/gtest.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 const int kNumFramesToProcess = 100; | 22 const int kNumFramesToProcess = 100; |
| 23 | 23 |
| 24 void SetupComponent(int sample_rate_hz, | 24 void SetupComponent(int sample_rate_hz, |
| 25 EchoCancellation::SuppressionLevel suppression_level, | 25 EchoCancellation::SuppressionLevel suppression_level, |
| 26 bool drift_compensation_enabled, | 26 bool drift_compensation_enabled, |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 DISABLED_Stereo48kHz_HighLevel_NoDrift_StreamDelay0) { | 348 DISABLED_Stereo48kHz_HighLevel_NoDrift_StreamDelay0) { |
| 349 #endif | 349 #endif |
| 350 const float kOutputReference[] = {-0.001101f, -0.001101f, -0.000449f, | 350 const float kOutputReference[] = {-0.001101f, -0.001101f, -0.000449f, |
| 351 -0.001101f, -0.001101f, -0.000449f}; | 351 -0.001101f, -0.001101f, -0.000449f}; |
| 352 RunBitexactnessTest(48000, 2, 0, false, 0, | 352 RunBitexactnessTest(48000, 2, 0, false, 0, |
| 353 EchoCancellation::SuppressionLevel::kHighSuppression, | 353 EchoCancellation::SuppressionLevel::kHighSuppression, |
| 354 kStreamHasEchoReference, kOutputReference); | 354 kStreamHasEchoReference, kOutputReference); |
| 355 } | 355 } |
| 356 | 356 |
| 357 } // namespace webrtc | 357 } // namespace webrtc |
| OLD | NEW |