[fix] fix qos module

This commit is contained in:
dijunkun
2025-01-20 18:41:52 +08:00
parent 5bbd182a3f
commit 477fd1f13b
62 changed files with 4005 additions and 651 deletions

View File

@@ -43,7 +43,7 @@ class CongestionControlFeedbackGenerator
: public RtpTransportFeedbackGenerator {
public:
CongestionControlFeedbackGenerator(
std::shared_ptr<SimulatedClock> clock,
std::shared_ptr<Clock> clock,
RtpTransportFeedbackGenerator::RtcpSender feedback_sender);
~CongestionControlFeedbackGenerator() = default;
@@ -62,7 +62,7 @@ class CongestionControlFeedbackGenerator
void CalculateNextPossibleSendTime(DataSize feedback_size, Timestamp now);
std::shared_ptr<SimulatedClock> clock_;
std::shared_ptr<Clock> clock_;
const RtcpSender rtcp_sender_;
TimeDelta min_time_between_feedback_;