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

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

Issue 2603293002: Revert of Added first layer of the echo canceller 3 functionality (Closed)
Patch Set: Created 3 years, 12 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/block_processor_unittest.cc
diff --git a/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc b/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc
deleted file mode 100644
index 9628306404a24ebd25520b04a564071bdd7640f1..0000000000000000000000000000000000000000
--- a/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#include "webrtc/modules/audio_processing/aec3/block_processor.h"
-
-#include <memory>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "webrtc/modules/audio_processing/aec3/aec3_constants.h"
-#include "webrtc/test/gtest.h"
-
-namespace webrtc {
-namespace {
-
-// Verifies that the basic BlockProcessor functionality works and that the API
-// methods are callable.
-void RunBasicSetupAndApiCallTest(int sample_rate_hz) {
- std::unique_ptr<BlockProcessor> block_processor(
- BlockProcessor::Create(sample_rate_hz));
- std::vector<std::vector<float>> block(NumBandsForRate(sample_rate_hz),
- std::vector<float>(kBlockSize, 0.f));
-
- EXPECT_FALSE(block_processor->BufferRender(&block));
- block_processor->ProcessCapture(false, false, &block);
- block_processor->ReportEchoLeakage(false);
-}
-
-#if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
-void RunRenderBlockSizeVerificationTest(int sample_rate_hz) {
- std::unique_ptr<BlockProcessor> block_processor(
- BlockProcessor::Create(sample_rate_hz));
- std::vector<std::vector<float>> block(
- NumBandsForRate(sample_rate_hz), std::vector<float>(kBlockSize - 1, 0.f));
-
- EXPECT_DEATH(block_processor->BufferRender(&block), "");
-}
-
-void RunCaptureBlockSizeVerificationTest(int sample_rate_hz) {
- std::unique_ptr<BlockProcessor> block_processor(
- BlockProcessor::Create(sample_rate_hz));
- std::vector<std::vector<float>> block(
- NumBandsForRate(sample_rate_hz), std::vector<float>(kBlockSize - 1, 0.f));
-
- EXPECT_DEATH(block_processor->ProcessCapture(false, false, &block), "");
-}
-
-void RunRenderNumBandsVerificationTest(int sample_rate_hz) {
- const size_t wrong_num_bands = NumBandsForRate(sample_rate_hz) < 3
- ? NumBandsForRate(sample_rate_hz) + 1
- : 1;
- std::unique_ptr<BlockProcessor> block_processor(
- BlockProcessor::Create(sample_rate_hz));
- std::vector<std::vector<float>> block(wrong_num_bands,
- std::vector<float>(kBlockSize, 0.f));
-
- EXPECT_DEATH(block_processor->BufferRender(&block), "");
-}
-
-void RunCaptureNumBandsVerificationTest(int sample_rate_hz) {
- const size_t wrong_num_bands = NumBandsForRate(sample_rate_hz) < 3
- ? NumBandsForRate(sample_rate_hz) + 1
- : 1;
- std::unique_ptr<BlockProcessor> block_processor(
- BlockProcessor::Create(sample_rate_hz));
- std::vector<std::vector<float>> block(wrong_num_bands,
- std::vector<float>(kBlockSize, 0.f));
-
- EXPECT_DEATH(block_processor->ProcessCapture(false, false, &block), "");
-}
-#endif
-
-std::string ProduceDebugText(int sample_rate_hz) {
- std::ostringstream ss;
- ss << "Sample rate: " << sample_rate_hz;
- return ss.str();
-}
-
-} // namespace
-
-TEST(BlockProcessor, BasicSetupAndApiCalls) {
- for (auto rate : {8000, 16000, 32000, 48000}) {
- SCOPED_TRACE(ProduceDebugText(rate));
- RunBasicSetupAndApiCallTest(rate);
- }
-}
-
-#if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
-TEST(BlockProcessor, VerifyRenderBlockSizeCheck) {
- for (auto rate : {8000, 16000, 32000, 48000}) {
- SCOPED_TRACE(ProduceDebugText(rate));
- RunRenderBlockSizeVerificationTest(rate);
- }
-}
-
-TEST(BlockProcessor, VerifyCaptureBlockSizeCheck) {
- for (auto rate : {8000, 16000, 32000, 48000}) {
- SCOPED_TRACE(ProduceDebugText(rate));
- RunCaptureBlockSizeVerificationTest(rate);
- }
-}
-
-TEST(BlockProcessor, VerifyRenderNumBandsCheck) {
- for (auto rate : {8000, 16000, 32000, 48000}) {
- SCOPED_TRACE(ProduceDebugText(rate));
- RunRenderNumBandsVerificationTest(rate);
- }
-}
-
-TEST(BlockProcessor, VerifyCaptureNumBandsCheck) {
- for (auto rate : {8000, 16000, 32000, 48000}) {
- SCOPED_TRACE(ProduceDebugText(rate));
- RunCaptureNumBandsVerificationTest(rate);
- }
-}
-
-// Verifiers that the verification for null ProcessCapture input works.
-TEST(BlockProcessor, NullProcessCaptureParameter) {
- EXPECT_DEATH(std::unique_ptr<BlockProcessor>(BlockProcessor::Create(8000))
- ->ProcessCapture(false, false, nullptr),
- "");
-}
-
-// Verifiers that the verification for null BufferRender input works.
-TEST(BlockProcessor, NullBufferRenderParameter) {
- EXPECT_DEATH(std::unique_ptr<BlockProcessor>(BlockProcessor::Create(8000))
- ->BufferRender(nullptr),
- "");
-}
-
-#endif
-
-} // namespace webrtc
« no previous file with comments | « webrtc/modules/audio_processing/aec3/block_processor.cc ('k') | webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698