2014-12-04 15:34:06 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 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.
|
|
|
|
|
*/
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MODULES_REMOTE_BITRATE_ESTIMATOR_OVERUSE_ESTIMATOR_H_
|
|
|
|
|
#define MODULES_REMOTE_BITRATE_ESTIMATOR_OVERUSE_ESTIMATOR_H_
|
2014-12-04 15:34:06 +00:00
|
|
|
|
2018-10-23 12:03:01 +02:00
|
|
|
#include <stdint.h>
|
2019-07-05 19:08:33 +02:00
|
|
|
|
2017-01-18 01:59:53 -08:00
|
|
|
#include <deque>
|
2014-12-04 15:34:06 +00:00
|
|
|
|
2020-11-24 17:50:31 +01:00
|
|
|
#include "api/network_state_predictor.h"
|
2014-12-04 15:34:06 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2019-05-09 13:12:24 +02:00
|
|
|
// Bandwidth over-use detector options. These are used to drive
|
|
|
|
|
// experimentation with bandwidth estimation parameters.
|
|
|
|
|
// TODO(terelius): This is only used in overuse_estimator.cc, and only in the
|
|
|
|
|
// default constructed state. Can we move the relevant variables into that
|
|
|
|
|
// class and delete this?
|
|
|
|
|
struct OverUseDetectorOptions {
|
|
|
|
|
OverUseDetectorOptions() = default;
|
|
|
|
|
double initial_slope = 8.0 / 512.0;
|
|
|
|
|
double initial_offset = 0;
|
|
|
|
|
double initial_e[2][2] = {{100.0, 0.0}, {0.0, 1e-1}};
|
|
|
|
|
double initial_process_noise[2] = {1e-13, 1e-3};
|
|
|
|
|
double initial_avg_noise = 0.0;
|
|
|
|
|
double initial_var_noise = 50.0;
|
|
|
|
|
};
|
|
|
|
|
|
2014-12-04 15:34:06 +00:00
|
|
|
class OveruseEstimator {
|
|
|
|
|
public:
|
2015-11-27 01:02:31 -08:00
|
|
|
explicit OveruseEstimator(const OverUseDetectorOptions& options);
|
2014-12-04 15:34:06 +00:00
|
|
|
~OveruseEstimator();
|
|
|
|
|
|
2022-01-21 09:49:39 +09:00
|
|
|
OveruseEstimator(const OveruseEstimator&) = delete;
|
|
|
|
|
OveruseEstimator& operator=(const OveruseEstimator&) = delete;
|
|
|
|
|
|
2014-12-04 15:34:06 +00:00
|
|
|
// Update the estimator with a new sample. The deltas should represent deltas
|
|
|
|
|
// between timestamp groups as defined by the InterArrival class.
|
2021-07-28 20:29:52 +02:00
|
|
|
// `current_hypothesis` should be the hypothesis of the over-use detector at
|
2014-12-04 15:34:06 +00:00
|
|
|
// this time.
|
2016-09-14 05:04:36 -07:00
|
|
|
void Update(int64_t t_delta,
|
|
|
|
|
double ts_delta,
|
|
|
|
|
int size_delta,
|
|
|
|
|
BandwidthUsage current_hypothesis,
|
|
|
|
|
int64_t now_ms);
|
2014-12-04 15:34:06 +00:00
|
|
|
|
|
|
|
|
// Returns the estimated noise/jitter variance in ms^2.
|
|
|
|
|
double var_noise() const { return var_noise_; }
|
|
|
|
|
|
|
|
|
|
// Returns the estimated inter-arrival time delta offset in ms.
|
|
|
|
|
double offset() const { return offset_; }
|
|
|
|
|
|
|
|
|
|
// Returns the number of deltas which the current over-use estimator state is
|
|
|
|
|
// based on.
|
|
|
|
|
unsigned int num_of_deltas() const { return num_of_deltas_; }
|
|
|
|
|
|
|
|
|
|
private:
|
2015-11-27 01:02:31 -08:00
|
|
|
double UpdateMinFramePeriod(double ts_delta);
|
|
|
|
|
void UpdateNoiseEstimate(double residual, double ts_delta, bool stable_state);
|
2014-12-04 15:34:06 +00:00
|
|
|
|
|
|
|
|
// Must be first member variable. Cannot be const because we need to be
|
|
|
|
|
// copyable.
|
2015-11-27 01:02:31 -08:00
|
|
|
OverUseDetectorOptions options_;
|
2014-12-04 15:34:06 +00:00
|
|
|
uint16_t num_of_deltas_;
|
2015-11-27 01:02:31 -08:00
|
|
|
double slope_;
|
2014-12-04 15:34:06 +00:00
|
|
|
double offset_;
|
|
|
|
|
double prev_offset_;
|
2015-11-27 01:02:31 -08:00
|
|
|
double E_[2][2];
|
|
|
|
|
double process_noise_[2];
|
2014-12-04 15:34:06 +00:00
|
|
|
double avg_noise_;
|
|
|
|
|
double var_noise_;
|
2017-01-18 01:59:53 -08:00
|
|
|
std::deque<double> ts_delta_hist_;
|
2014-12-04 15:34:06 +00:00
|
|
|
};
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MODULES_REMOTE_BITRATE_ESTIMATOR_OVERUSE_ESTIMATOR_H_
|