Home
last modified time | relevance | path

Searched refs:drop_count_ (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/video_coding/utility/
Dframe_dropper.cc72 drop_count_ = 0; in Reset()
180 drop_count_ = 0; in DropFrame()
198 if (drop_count_ < 0) { in DropFrame()
200 drop_count_ = -drop_count_; in DropFrame()
202 if (drop_count_ < limit) { in DropFrame()
204 drop_count_++; in DropFrame()
208 drop_count_ = 0; in DropFrame()
221 if (drop_count_ > 0) { in DropFrame()
224 drop_count_ = -drop_count_; in DropFrame()
226 if (drop_count_ > limit) { in DropFrame()
[all …]
Dframe_dropper.h85 int drop_count_; variable
/external/webrtc/call/
Dsimulated_network.cc58 drop_count_ = drop_count_ - previous_drop_count_; in DropDequeuedPacket()
60 drop_count_ = 0; in DropDequeuedPacket()
61 previous_drop_count_ = drop_count_; in DropDequeuedPacket()
63 ++drop_count_; in DropDequeuedPacket()
69 TimeDelta drop_delay = kWindow / sqrt(static_cast<double>(drop_count_)); in DropDequeuedPacket()
75 ++drop_count_; in DropDequeuedPacket()
Dsimulated_network.h49 int drop_count_ = 0; variable
/external/pigweed/pw_log_sink/
Dlog_sink_test.cc65 void HandleDropped(uint32_t count) final { drop_count_ += count; } in HandleDropped()
72 uint32_t GetDropCount() { return drop_count_; } in GetDropCount()
77 uint32_t drop_count_ = 0; member in pw::log_sink::__anon3bd316200111::TestSink