Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Ddtmf_queue.cc18 next_empty_index_(0) { in DTMFqueue()
31 if (next_empty_index_ >= DTMF_OUTBAND_MAX) { in AddDTMF()
34 int32_t index = next_empty_index_; in AddDTMF()
38 next_empty_index_++; in AddDTMF()
44 if (next_empty_index_ == 0) in NextDTMF()
52 next_empty_index_ * sizeof(uint8_t)); in NextDTMF()
54 next_empty_index_ * sizeof(uint16_t)); in NextDTMF()
56 next_empty_index_ * sizeof(uint8_t)); in NextDTMF()
58 next_empty_index_--; in NextDTMF()
64 return next_empty_index_ > 0; in PendingDTMF()
[all …]
Ddtmf_queue.h31 uint8_t next_empty_index_; variable