blob: a58250abc467573f4c8b6d423c78bcf2615d3044 [file] [log] [blame]
minyue@webrtc.org74aaf292014-07-16 21:28:26 +00001/*
2 * Copyright (c) 2011 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "rtc_base/numerics/exp_filter.h"
minyue@webrtc.org74aaf292014-07-16 21:28:26 +000012
Mirko Bonadeib5dd6b62019-03-20 07:09:48 +010013#include <cmath>
minyue@webrtc.org74aaf292014-07-16 21:28:26 +000014
15namespace rtc {
16
17const float ExpFilter::kValueUndefined = -1.0f;
18
19void ExpFilter::Reset(float alpha) {
20 alpha_ = alpha;
21 filtered_ = kValueUndefined;
22}
23
24float ExpFilter::Apply(float exp, float sample) {
25 if (filtered_ == kValueUndefined) {
26 // Initialize filtered value.
27 filtered_ = sample;
28 } else if (exp == 1.0) {
29 filtered_ = alpha_ * filtered_ + (1 - alpha_) * sample;
30 } else {
Mirko Bonadeib5dd6b62019-03-20 07:09:48 +010031 float alpha = std::pow(alpha_, exp);
minyue@webrtc.org74aaf292014-07-16 21:28:26 +000032 filtered_ = alpha * filtered_ + (1 - alpha) * sample;
33 }
34 if (max_ != kValueUndefined && filtered_ > max_) {
35 filtered_ = max_;
36 }
37 return filtered_;
38}
39
40void ExpFilter::UpdateBase(float alpha) {
41 alpha_ = alpha;
42}
43} // namespace rtc