HomeSort by relevance Sort by last modified time
    Searched refs:next_pop_idx_ (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/video_coding/
timestamp_map.cc 23 next_pop_idx_(0) {}
32 if (next_add_idx_ == next_pop_idx_) {
34 next_pop_idx_ = (next_pop_idx_ + 1) % capacity_;
40 if (ring_buffer_[next_pop_idx_].timestamp == timestamp) {
42 VCMFrameInformation* data = ring_buffer_[next_pop_idx_].data;
43 ring_buffer_[next_pop_idx_].data = nullptr;
44 next_pop_idx_ = (next_pop_idx_ + 1) % capacity_;
46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp
    [all...]
timestamp_map.h 42 size_t next_pop_idx_; member in class:webrtc::VCMTimestampMap

Completed in 167 milliseconds