Make overuse estimator one dimensional.
This drops the payload size difference dimension of the Kalman filter, which doesn't improve the quality of the estimation when pacing packets on the send-side. R=gaetano.carlucci@gmail.com, mflodman@webrtc.org, terelius@webrtc.org Review URL: https://codereview.webrtc.org/1376423002 . Cr-Commit-Position: refs/heads/master@{#10809}
This commit is contained in:
@ -61,8 +61,7 @@ class TestTransport : public Transport {
|
||||
class RtcpFormatRembTest : public ::testing::Test {
|
||||
protected:
|
||||
RtcpFormatRembTest()
|
||||
: over_use_detector_options_(),
|
||||
system_clock_(Clock::GetRealTimeClock()),
|
||||
: system_clock_(Clock::GetRealTimeClock()),
|
||||
dummy_rtp_rtcp_impl_(nullptr),
|
||||
receive_statistics_(ReceiveStatistics::Create(system_clock_)),
|
||||
rtcp_sender_(nullptr),
|
||||
@ -75,7 +74,6 @@ class RtcpFormatRembTest : public ::testing::Test {
|
||||
void SetUp() override;
|
||||
void TearDown() override;
|
||||
|
||||
OverUseDetectorOptions over_use_detector_options_;
|
||||
Clock* system_clock_;
|
||||
ModuleRtpRtcpImpl* dummy_rtp_rtcp_impl_;
|
||||
rtc::scoped_ptr<ReceiveStatistics> receive_statistics_;
|
||||
|
||||
@ -66,8 +66,7 @@ class TestTransport : public Transport,
|
||||
class RtcpReceiverTest : public ::testing::Test {
|
||||
protected:
|
||||
RtcpReceiverTest()
|
||||
: over_use_detector_options_(),
|
||||
system_clock_(1335900000),
|
||||
: system_clock_(1335900000),
|
||||
remote_bitrate_observer_(),
|
||||
remote_bitrate_estimator_(
|
||||
new RemoteBitrateEstimatorSingleStream(&remote_bitrate_observer_,
|
||||
@ -131,7 +130,6 @@ class RtcpReceiverTest : public ::testing::Test {
|
||||
return 0;
|
||||
}
|
||||
|
||||
OverUseDetectorOptions over_use_detector_options_;
|
||||
SimulatedClock system_clock_;
|
||||
ModuleRtpRtcpImpl* rtp_rtcp_impl_;
|
||||
RTCPReceiver* rtcp_receiver_;
|
||||
|
||||
Reference in New Issue
Block a user