OLD | NEW |
(Empty) | |
| 1 /* |
| 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 #include "webrtc/modules/audio_processing/agc2/digital_gain_applier.h" |
| 12 |
| 13 #include <algorithm> |
| 14 |
| 15 namespace webrtc { |
| 16 namespace { |
| 17 |
| 18 const float kMaxSampleValue = 32767.0f; |
| 19 const float kMinSampleValue = -32767.0f; |
| 20 |
| 21 } // namespace |
| 22 |
| 23 DigitalGainApplier::DigitalGainApplier() = default; |
| 24 |
| 25 void DigitalGainApplier::Process(float gain, AudioBuffer* audio) { |
| 26 if (gain == 1.f) { return; } |
| 27 for (size_t k = 0; k < audio->num_channels(); ++k) { |
| 28 auto channel_view = rtc::ArrayView<float>( |
| 29 audio->channels_f()[k], audio->num_frames()); |
| 30 ApplyGain(gain, channel_view); |
| 31 LimitToAllowedRange(channel_view); |
| 32 } |
| 33 } |
| 34 |
| 35 void DigitalGainApplier::ApplyGain(float gain, rtc::ArrayView<float> x) { |
| 36 for (auto& v : x) { v *= gain; } |
| 37 } |
| 38 |
| 39 void DigitalGainApplier::LimitToAllowedRange(rtc::ArrayView<float> x) { |
| 40 for (auto& v : x) { |
| 41 v = std::max(kMinSampleValue, v); |
| 42 v = std::min(kMaxSampleValue, v); |
| 43 } |
| 44 } |
| 45 |
| 46 } // namespace webrtc |
OLD | NEW |