Home
last modified time | relevance | path

Searched refs:InterArrival (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/modules/remote_bitrate_estimator/
Dinter_arrival.cc23 InterArrival::InterArrival(uint32_t timestamp_group_length_ticks, in InterArrival() function in webrtc::InterArrival
33 bool InterArrival::ComputeDeltas(uint32_t timestamp, in ComputeDeltas()
111 bool InterArrival::PacketInOrder(uint32_t timestamp) { in PacketInOrder()
126 bool InterArrival::NewTimestampGroup(int64_t arrival_time_ms, in NewTimestampGroup()
139 bool InterArrival::BelongsToBurst(int64_t arrival_time_ms, in BelongsToBurst()
160 void InterArrival::Reset() { in Reset()
Dinter_arrival_unittest.cc37 new InterArrival(kTimestampGroupLengthUs / 1000, 1.0, true)); in SetUp()
38 inter_arrival_rtp_.reset(new InterArrival( in SetUp()
40 inter_arrival_ast_.reset(new InterArrival( in SetUp()
151 std::unique_ptr<InterArrival> inter_arrival_;
166 static void InternalExpectFalse(InterArrival* inter_arrival, in InternalExpectFalse()
182 static void InternalExpectTrue(InterArrival* inter_arrival, in InternalExpectTrue()
202 std::unique_ptr<InterArrival> inter_arrival_rtp_;
203 std::unique_ptr<InterArrival> inter_arrival_ast_;
437 arrival_time_ms += kTimeDeltaMs + InterArrival::kArrivalTimeOffsetThresholdMs; in TEST_F()
510 for (int i = 0; i < InterArrival::kReorderedResetThreshold + 3; ++i) { in TEST_F()
Dinter_arrival.h24 class InterArrival {
34 InterArrival(uint32_t timestamp_group_length_ticks,
91 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(InterArrival);
Dremote_bitrate_estimator_abs_send_time.h128 std::unique_ptr<InterArrival> inter_arrival_;
Dremote_bitrate_estimator_single_stream.cc56 InterArrival inter_arrival;
Doveruse_detector_unittest.cc40 inter_arrival_(new InterArrival(5 * 90, kRtpTimestampToMs, true)), in OveruseDetectorTest()
122 std::unique_ptr<InterArrival> inter_arrival_;
Dremote_bitrate_estimator_abs_send_time.cc384 new InterArrival((kTimestampGroupLengthMs << kInterArrivalShift) / 1000, in TimeoutStreams()
/external/webrtc/modules/congestion_controller/goog_cc/
Ddelay_based_bwe.h133 std::unique_ptr<InterArrival> video_inter_arrival_;
135 std::unique_ptr<InterArrival> audio_inter_arrival_;
Ddelay_based_bwe.cc184 new InterArrival(kTimestampGroupTicks, kTimestampToMs, true)); in IncomingPacketFeedback()
188 new InterArrival(kTimestampGroupTicks, kTimestampToMs, true)); in IncomingPacketFeedback()
213 InterArrival* inter_arrival_for_packet = video_inter_arrival_.get(); in IncomingPacketFeedback()