mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-17 16:26:39 +03:00
f539147d48
This fixes all the license headers in the main library, which corrects the appearance of the main license in the compiled output. It seems that the `!` in the header forces the compiler to keep it in the output. I believe older compiler releases did this purely based on `@license`. Issue #2638 Change-Id: I7f0e918caad10c9af689c9d07672b7fe9be7b2f3
63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.provide('shaka.abr.Ewma');
|
|
|
|
goog.require('goog.asserts');
|
|
|
|
|
|
/**
|
|
* @summary
|
|
* This class computes an exponentionally-weighted moving average.
|
|
*/
|
|
shaka.abr.Ewma = class {
|
|
/**
|
|
* @param {number} halfLife The quantity of prior samples (by weight) used
|
|
* when creating a new estimate. Those prior samples make up half of the
|
|
* new estimate.
|
|
*/
|
|
constructor(halfLife) {
|
|
goog.asserts.assert(halfLife > 0, 'expected halfLife to be positive');
|
|
|
|
/**
|
|
* Larger values of alpha expire historical data more slowly.
|
|
* @private {number}
|
|
*/
|
|
this.alpha_ = Math.exp(Math.log(0.5) / halfLife);
|
|
|
|
/** @private {number} */
|
|
this.estimate_ = 0;
|
|
|
|
/** @private {number} */
|
|
this.totalWeight_ = 0;
|
|
}
|
|
|
|
/**
|
|
* Takes a sample.
|
|
*
|
|
* @param {number} weight
|
|
* @param {number} value
|
|
*/
|
|
sample(weight, value) {
|
|
const adjAlpha = Math.pow(this.alpha_, weight);
|
|
const newEstimate = value * (1 - adjAlpha) + adjAlpha * this.estimate_;
|
|
|
|
if (!isNaN(newEstimate)) {
|
|
this.estimate_ = newEstimate;
|
|
this.totalWeight_ += weight;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @return {number}
|
|
*/
|
|
getEstimate() {
|
|
const zeroFactor = 1 - Math.pow(this.alpha_, this.totalWeight_);
|
|
return this.estimate_ / zeroFactor;
|
|
}
|
|
};
|