webrtc/modules/audio_processing/agc2/vad_with_level_unittest.cc
Alessio Bazzica 1e2542f593 AGC2: adding level estimation option (RMS or peak-based).
This CL makes possible to choose the level estimation for the adaptive
digital GC of AGC2. The options are RMS (default and currently used
estimator) and peak-based (already computed, but not used).

Besides adding the new AGC2 config param for the level estimator, this CL
also refactors the config class by making it more structured.

Bug: webrtc:7494
Change-Id: I20eb558ca50f13536aa7bdea08d21de3b630f8bc
Reviewed-on: https://webrtc-review.googlesource.com/c/110144
Commit-Queue: Alessio Bazzica <alessiob@webrtc.org>
Reviewed-by: Alex Loiko <aleloi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25620}
2018-11-13 14:32:13 +00:00

40 lines
1.3 KiB
C++

/*
* Copyright (c) 2018 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 "modules/audio_processing/agc2/vad_with_level.h"
#include "rtc_base/gunit.h"
namespace webrtc {
namespace test {
TEST(AutomaticGainController2VadWithLevelEstimator,
PeakLevelGreaterThanRmsLevel) {
constexpr size_t kSampleRateHz = 8000;
// 10 ms input frame, constant except for one peak value.
// Handcrafted so that the average is lower than the peak value.
std::array<float, kSampleRateHz / 100> frame;
frame.fill(1000.f);
frame[10] = 2000.f;
float* const channel0 = frame.data();
AudioFrameView<float> frame_view(&channel0, 1, frame.size());
// Compute audio frame levels (the VAD result is ignored).
VadWithLevel vad_with_level;
auto levels_and_vad_prob = vad_with_level.AnalyzeFrame(frame_view);
// Compare peak and RMS levels.
EXPECT_LT(levels_and_vad_prob.speech_rms_dbfs,
levels_and_vad_prob.speech_peak_dbfs);
}
} // namespace test
} // namespace webrtc