/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
transport_feedback_adapter.cc | 41 if (bitrate_estimator_.get()) 42 process_thread_->DeRegisterModule(bitrate_estimator_.get()); 47 if (bitrate_estimator_.get() != rbe) { 48 bitrate_estimator_.reset(rbe); 120 RTC_DCHECK(bitrate_estimator_.get() != nullptr); 121 bitrate_estimator_->IncomingPacketFeedbackVector(packet_feedback_vector); 132 RTC_DCHECK(bitrate_estimator_.get() != nullptr); 133 bitrate_estimator_->OnRttUpdate(avg_rtt_ms, max_rtt_ms);
|
transport_feedback_adapter.h | 47 return bitrate_estimator_.get(); 58 rtc::scoped_ptr<RemoteBitrateEstimator> bitrate_estimator_; member in class:webrtc::TransportFeedbackAdapter
|
remote_bitrate_estimator_abs_send_time_unittest.cc | 22 bitrate_estimator_.reset(new RemoteBitrateEstimatorAbsSendTime( 100 EXPECT_EQ(0, bitrate_estimator_->Process()); 103 EXPECT_EQ(0, bitrate_estimator_->Process()); 125 EXPECT_EQ(0, bitrate_estimator_->Process()); 147 EXPECT_EQ(0, bitrate_estimator_->Process()); 178 EXPECT_EQ(0, bitrate_estimator_->Process()); 198 EXPECT_EQ(0, bitrate_estimator_->Process()); 217 EXPECT_EQ(0, bitrate_estimator_->Process()); 235 EXPECT_EQ(0, bitrate_estimator_->Process()); 255 EXPECT_EQ(0, bitrate_estimator_->Process()) [all...] |
remote_bitrate_estimator_unittest_helper.cc | 233 bitrate_estimator_->IncomingPacket(arrival_time + kArrivalTimeClockOffsetMs, 269 bitrate_estimator_->Process(); 316 EXPECT_FALSE(bitrate_estimator_->LatestEstimate(&ssrcs, &bitrate_bps)); 319 bitrate_estimator_->Process(); 320 EXPECT_FALSE(bitrate_estimator_->LatestEstimate(&ssrcs, &bitrate_bps)); 327 bitrate_estimator_->Process(); 328 EXPECT_FALSE(bitrate_estimator_->LatestEstimate(&ssrcs, &bitrate_bps)); 341 bitrate_estimator_->Process(); 342 EXPECT_TRUE(bitrate_estimator_->LatestEstimate(&ssrcs, &bitrate_bps)); 349 bitrate_estimator_->RemoveStream(kDefaultSsrc) [all...] |
transport_feedback_adapter_unittest.cc | 36 bitrate_estimator_(nullptr), 45 bitrate_estimator_ = new MockRemoteBitrateEstimator(); 46 EXPECT_CALL(process_thread_, RegisterModule(bitrate_estimator_)).Times(1); 47 adapter_->SetBitrateEstimator(bitrate_estimator_); 51 EXPECT_CALL(process_thread_, DeRegisterModule(bitrate_estimator_)).Times(1); 115 MockRemoteBitrateEstimator* bitrate_estimator_; member in class:webrtc::test::TransportFeedbackAdapterTest 143 EXPECT_CALL(*bitrate_estimator_, IncomingPacketFeedbackVector(_)) 185 EXPECT_CALL(*bitrate_estimator_, IncomingPacketFeedbackVector(_)) 222 EXPECT_CALL(*bitrate_estimator_, IncomingPacketFeedbackVector(_)) 291 EXPECT_CALL(*bitrate_estimator_, IncomingPacketFeedbackVector(_) [all...] |
remote_bitrate_estimator_single_stream_unittest.cc | 22 bitrate_estimator_.reset(new RemoteBitrateEstimatorSingleStream(
|
remote_bitrate_estimator_unittest_helper.h | 212 rtc::scoped_ptr<RemoteBitrateEstimator> bitrate_estimator_; member in class:webrtc::RemoteBitrateEstimatorTest
|