mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

This CL was generated by running git ls-files | grep -P "(\.h|\.cc)$" | grep -v 'sdk/' | grep -v 'rtc_base/ssl_' | \ grep -v 'fake_rtc_certificate_generator.h' | grep -v 'modules/audio_device/win/' | \ grep -v 'system_wrappers/source/clock.cc' | grep -v 'rtc_base/trace_event.h' | \ grep -v 'modules/audio_coding/codecs/ilbc/' | grep -v 'screen_capturer_mac.h' | \ grep -v 'spl_inl_mips.h' | grep -v 'data_size_unittest.cc' | grep -v 'timestamp_unittest.cc' \ | xargs clang-format -i ; git cl format Most of these changes are clang-format grouping and reordering includes differently. Bug: webrtc:9340 Change-Id: Ic83ddbc169bfacd21883e381b5181c3dd4fe8a63 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/144051 Commit-Queue: Jonas Olsson <jonasolsson@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28505}
83 lines
2.8 KiB
C++
83 lines
2.8 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
#ifndef MODULES_REMOTE_BITRATE_ESTIMATOR_OVERUSE_ESTIMATOR_H_
|
|
#define MODULES_REMOTE_BITRATE_ESTIMATOR_OVERUSE_ESTIMATOR_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <deque>
|
|
|
|
#include "modules/remote_bitrate_estimator/include/bwe_defines.h"
|
|
#include "rtc_base/constructor_magic.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// 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;
|
|
};
|
|
|
|
class OveruseEstimator {
|
|
public:
|
|
explicit OveruseEstimator(const OverUseDetectorOptions& options);
|
|
~OveruseEstimator();
|
|
|
|
// Update the estimator with a new sample. The deltas should represent deltas
|
|
// between timestamp groups as defined by the InterArrival class.
|
|
// |current_hypothesis| should be the hypothesis of the over-use detector at
|
|
// this time.
|
|
void Update(int64_t t_delta,
|
|
double ts_delta,
|
|
int size_delta,
|
|
BandwidthUsage current_hypothesis,
|
|
int64_t now_ms);
|
|
|
|
// 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:
|
|
double UpdateMinFramePeriod(double ts_delta);
|
|
void UpdateNoiseEstimate(double residual, double ts_delta, bool stable_state);
|
|
|
|
// Must be first member variable. Cannot be const because we need to be
|
|
// copyable.
|
|
OverUseDetectorOptions options_;
|
|
uint16_t num_of_deltas_;
|
|
double slope_;
|
|
double offset_;
|
|
double prev_offset_;
|
|
double E_[2][2];
|
|
double process_noise_[2];
|
|
double avg_noise_;
|
|
double var_noise_;
|
|
std::deque<double> ts_delta_hist_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(OveruseEstimator);
|
|
};
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_REMOTE_BITRATE_ESTIMATOR_OVERUSE_ESTIMATOR_H_
|