Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/video_coding/
Dtimestamp_map.cc20 : ring_buffer_(new TimestampDataTuple[capacity]), in VCMTimestampMap()
28 ring_buffer_[next_add_idx_].timestamp = timestamp; in Add()
29 ring_buffer_[next_add_idx_].data = data; in Add()
40 if (ring_buffer_[next_pop_idx_].timestamp == timestamp) { in Pop()
42 VCMFrameInformation* data = ring_buffer_[next_pop_idx_].data; in Pop()
43 ring_buffer_[next_pop_idx_].data = nullptr; in Pop()
46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp, in Pop()
Dtimestamp_map.h39 rtc::scoped_ptr<TimestampDataTuple[]> ring_buffer_; variable