Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: webrtc/base/exp_filter.h

Issue 2532523002: Move smoothing filter to common audio and exp_filter to base/analytics. (Closed)
Patch Set: typo Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/analytics/exp_filter_unittest.cc ('k') | webrtc/base/exp_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/exp_filter.h
diff --git a/webrtc/base/exp_filter.h b/webrtc/base/exp_filter.h
deleted file mode 100644
index 174159b45f8291af985cef4552a8cca02411079e..0000000000000000000000000000000000000000
--- a/webrtc/base/exp_filter.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2011 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 WEBRTC_BASE_EXP_FILTER_H_
-#define WEBRTC_BASE_EXP_FILTER_H_
-
-namespace rtc {
-
-// This class can be used, for example, for smoothing the result of bandwidth
-// estimation and packet loss estimation.
-
-class ExpFilter {
- public:
- static const float kValueUndefined;
-
- explicit ExpFilter(float alpha, float max = kValueUndefined)
- : max_(max) {
- Reset(alpha);
- }
-
- // Resets the filter to its initial state, and resets filter factor base to
- // the given value |alpha|.
- void Reset(float alpha);
-
- // Applies the filter with a given exponent on the provided sample:
- // y(k) = min(alpha_^ exp * y(k-1) + (1 - alpha_^ exp) * sample, max_).
- float Apply(float exp, float sample);
-
- // Returns current filtered value.
- float filtered() const { return filtered_; }
-
- // Changes the filter factor base to the given value |alpha|.
- void UpdateBase(float alpha);
-
- private:
- float alpha_; // Filter factor base.
- float filtered_; // Current filter output.
- const float max_;
-};
-} // namespace rtc
-
-#endif // WEBRTC_BASE_EXP_FILTER_H_
« no previous file with comments | « webrtc/base/analytics/exp_filter_unittest.cc ('k') | webrtc/base/exp_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698