mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 00:27:51 +01:00

This simplifies the following steps: * FrameCombiner infers the sample rate from channel size * Sends the inferred sample rate to FixedDigitalLevelEstimator and Limiter. * Those classes then convert the sample rate to channel size. Along the way perform checks that the derived channel size value is a legal value (which has already been done by FrameCombiner). To: * FrameCombiner sends channel size to FixedDigitalLevelEstimator and Limiter. Bug: chromium:335805780 Change-Id: I6d2953ba5ee99771f3ff5bf4f4a049a8a29b5577 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/352581 Reviewed-by: Per Åhgren <peah@webrtc.org> Commit-Queue: Tomas Gunnarsson <tommi@webrtc.org> Cr-Commit-Position: refs/heads/main@{#42480}
75 lines
2.5 KiB
C++
75 lines
2.5 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.
|
|
*/
|
|
|
|
#ifndef MODULES_AUDIO_PROCESSING_AGC2_LIMITER_H_
|
|
#define MODULES_AUDIO_PROCESSING_AGC2_LIMITER_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "api/audio/audio_frame.h"
|
|
#include "modules/audio_processing/agc2/fixed_digital_level_estimator.h"
|
|
#include "modules/audio_processing/agc2/interpolated_gain_curve.h"
|
|
#include "modules/audio_processing/include/audio_frame_view.h"
|
|
|
|
namespace webrtc {
|
|
class ApmDataDumper;
|
|
|
|
class Limiter {
|
|
public:
|
|
// See `SetSamplesPerChannel()` for valid values for `samples_per_channel`.
|
|
Limiter(ApmDataDumper* apm_data_dumper,
|
|
size_t samples_per_channel,
|
|
absl::string_view histogram_name_prefix);
|
|
|
|
[[deprecated("Use constructor that accepts samples_per_channel")]] Limiter(
|
|
int sample_rate_hz,
|
|
ApmDataDumper* apm_data_dumper,
|
|
absl::string_view histogram_name_prefix);
|
|
|
|
Limiter(const Limiter& limiter) = delete;
|
|
Limiter& operator=(const Limiter& limiter) = delete;
|
|
~Limiter();
|
|
|
|
// Applies limiter and hard-clipping to `signal`.
|
|
void Process(AudioFrameView<float> signal);
|
|
InterpolatedGainCurve::Stats GetGainCurveStats() const;
|
|
|
|
// Supported values must be
|
|
// * Supported by FixedDigitalLevelEstimator
|
|
// * Below or equal to kMaximalNumberOfSamplesPerChannel so that samples
|
|
// fit in the per_sample_scaling_factors_ array.
|
|
void SetSamplesPerChannel(size_t samples_per_channel);
|
|
|
|
[[deprecated("Use SetSamplesPerChannel")]] void SetSampleRate(
|
|
int sample_rate_hz) {
|
|
SetSamplesPerChannel(SampleRateToDefaultChannelSize(sample_rate_hz));
|
|
}
|
|
|
|
// Resets the internal state.
|
|
void Reset();
|
|
|
|
float LastAudioLevel() const;
|
|
|
|
private:
|
|
const InterpolatedGainCurve interp_gain_curve_;
|
|
FixedDigitalLevelEstimator level_estimator_;
|
|
ApmDataDumper* const apm_data_dumper_ = nullptr;
|
|
|
|
// Work array containing the sub-frame scaling factors to be interpolated.
|
|
std::array<float, kSubFramesInFrame + 1> scaling_factors_ = {};
|
|
std::array<float, kMaximalNumberOfSamplesPerChannel>
|
|
per_sample_scaling_factors_ = {};
|
|
float last_scaling_factor_ = 1.f;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_AUDIO_PROCESSING_AGC2_LIMITER_H_
|