blob: d74ba33e4a6ccaa99b477f5b2e24df5af7aa87b0 [file] [log] [blame]
alessiob3ec96df2017-05-22 06:57:06 -07001/*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_DIGITAL_GAIN_APPLIER_H_
12#define WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_DIGITAL_GAIN_APPLIER_H_
13
kwiberg529662a2017-09-04 05:43:17 -070014#include "webrtc/api/array_view.h"
alessiob3ec96df2017-05-22 06:57:06 -070015#include "webrtc/modules/audio_processing/audio_buffer.h"
alessiob3ec96df2017-05-22 06:57:06 -070016
17namespace webrtc {
18
19class DigitalGainApplier {
20 public:
21 DigitalGainApplier();
22
23 // Applies the specified gain to an array of samples.
24 void Process(float gain, rtc::ArrayView<float> samples);
25
26 private:
27 void LimitToAllowedRange(rtc::ArrayView<float> x);
28};
29
30} // namespace webrtc
31
32#endif // WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_DIGITAL_GAIN_APPLIER_H_