Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/video_coding/
Dtimestamp_map.cc22 next_add_idx_(0), in VCMTimestampMap()
28 ring_buffer_[next_add_idx_].timestamp = timestamp; in Add()
29 ring_buffer_[next_add_idx_].data = data; in Add()
30 next_add_idx_ = (next_add_idx_ + 1) % capacity_; in Add()
32 if (next_add_idx_ == next_pop_idx_) { in Add()
61 return (next_add_idx_ == next_pop_idx_); in IsEmpty()
Dtimestamp_map.h41 size_t next_add_idx_; variable