Home
last modified time | relevance | path

Searched refs:nack_byte_count_times_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_sender.cc155 nack_byte_count_times_(), in RTPSender()
181 memset(nack_byte_count_times_, 0, sizeof(nack_byte_count_times_)); in RTPSender()
841 if ((now - nack_byte_count_times_[num]) > kAvgIntervalMs) { in ProcessNACKBitRate()
852 if (nack_byte_count_times_[num - 1] <= now) { in ProcessNACKBitRate()
853 time_interval = now - nack_byte_count_times_[num - 1]; in ProcessNACKBitRate()
868 nack_byte_count_times_[i + 1] = nack_byte_count_times_[i]; in UpdateNACKBitRate()
871 nack_byte_count_times_[0] = now; in UpdateNACKBitRate()
Drtp_sender.h421 uint32_t nack_byte_count_times_[NACK_BYTECOUNT_SIZE]; variable