2015-04-21 15:30:11 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 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_MODULES_VIDEO_CODING_UTILITY_MOVING_AVERAGE_H_
|
|
|
|
|
#define WEBRTC_MODULES_VIDEO_CODING_UTILITY_MOVING_AVERAGE_H_
|
|
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
|
|
#include "webrtc/typedefs.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
2015-12-21 08:23:20 -08:00
|
|
|
template <class T>
|
2015-04-21 15:30:11 -07:00
|
|
|
class MovingAverage {
|
|
|
|
|
public:
|
|
|
|
|
MovingAverage();
|
|
|
|
|
void AddSample(T sample);
|
|
|
|
|
bool GetAverage(size_t num_samples, T* average);
|
|
|
|
|
void Reset();
|
|
|
|
|
int size();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
T sum_;
|
|
|
|
|
std::list<T> samples_;
|
|
|
|
|
};
|
|
|
|
|
|
2015-12-21 08:23:20 -08:00
|
|
|
template <class T>
|
|
|
|
|
MovingAverage<T>::MovingAverage()
|
|
|
|
|
: sum_(static_cast<T>(0)) {}
|
2015-04-21 15:30:11 -07:00
|
|
|
|
2015-12-21 08:23:20 -08:00
|
|
|
template <class T>
|
2015-04-21 15:30:11 -07:00
|
|
|
void MovingAverage<T>::AddSample(T sample) {
|
|
|
|
|
samples_.push_back(sample);
|
|
|
|
|
sum_ += sample;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-21 08:23:20 -08:00
|
|
|
template <class T>
|
2015-04-21 15:30:11 -07:00
|
|
|
bool MovingAverage<T>::GetAverage(size_t num_samples, T* avg) {
|
|
|
|
|
if (num_samples > samples_.size())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Remove old samples.
|
|
|
|
|
while (num_samples < samples_.size()) {
|
|
|
|
|
sum_ -= samples_.front();
|
|
|
|
|
samples_.pop_front();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*avg = sum_ / static_cast<T>(num_samples);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-21 08:23:20 -08:00
|
|
|
template <class T>
|
2015-04-21 15:30:11 -07:00
|
|
|
void MovingAverage<T>::Reset() {
|
|
|
|
|
sum_ = static_cast<T>(0);
|
|
|
|
|
samples_.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-21 08:23:20 -08:00
|
|
|
template <class T>
|
2015-04-21 15:30:11 -07:00
|
|
|
int MovingAverage<T>::size() {
|
|
|
|
|
return samples_.size();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2015-11-18 23:04:10 +01:00
|
|
|
#endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_MOVING_AVERAGE_H_
|