/* * Copyright (c) 2016 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_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_ #define WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_ #include #include #include #include #include "webrtc/base/checks.h" #include "webrtc/base/constructormagic.h" #include "webrtc/base/rate_statistics.h" #include "webrtc/base/thread_checker.h" #include "webrtc/modules/congestion_controller/probe_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/inter_arrival.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_estimator.h" namespace webrtc { class DelayBasedBwe { public: static const int64_t kStreamTimeOutMs = 2000; struct Result { Result() : updated(false), probe(false), target_bitrate_bps(0) {} Result(bool probe, uint32_t target_bitrate_bps) : updated(true), probe(probe), target_bitrate_bps(target_bitrate_bps) {} bool updated; bool probe; uint32_t target_bitrate_bps; }; explicit DelayBasedBwe(Clock* clock); virtual ~DelayBasedBwe() {} Result IncomingPacketFeedbackVector( const std::vector& packet_feedback_vector); void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms); bool LatestEstimate(std::vector* ssrcs, uint32_t* bitrate_bps) const; void SetMinBitrate(int min_bitrate_bps); private: Result IncomingPacketInfo(const PacketInfo& info); // Updates the current remote rate estimate and returns true if a valid // estimate exists. bool UpdateEstimate(int64_t packet_arrival_time_ms, int64_t now_ms, uint32_t* target_bitrate_bps); rtc::ThreadChecker network_thread_; Clock* const clock_; std::unique_ptr inter_arrival_; std::unique_ptr estimator_; OveruseDetector detector_; RateStatistics receiver_incoming_bitrate_; int64_t last_update_ms_; int64_t last_seen_packet_ms_; bool uma_recorded_; AimdRateControl rate_control_; ProbeBitrateEstimator probe_bitrate_estimator_; RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe); }; } // namespace webrtc #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_