From caa498abbf182ecf529cb541d0e19c7dbb85335a Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 14 Jul 2015 09:14:51 -0700 Subject: [PATCH] Make sure RTCP is sent in tests when receiving packets even if REMB is delayed. BUG=chromium:509821 Review URL: https://codereview.webrtc.org/1238703002 Cr-Commit-Position: refs/heads/master@{#9579} --- webrtc/video/rampup_tests.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/video/rampup_tests.cc b/webrtc/video/rampup_tests.cc index c35991f974..c3c97878e2 100644 --- a/webrtc/video/rampup_tests.cc +++ b/webrtc/video/rampup_tests.cc @@ -124,6 +124,7 @@ bool StreamObserver::SendRtp(const uint8_t* packet, size_t length) { clock_->TimeInMilliseconds(), length - header.headerLength, header, true); if (remote_bitrate_estimator_->TimeUntilNextProcess() <= 0) { remote_bitrate_estimator_->Process(); + rtp_rtcp_->Process(); } total_sent_ += length; padding_sent_ += header.paddingLength;