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