Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/video_coding/
Djitter_buffer.cc129 ss_map_[packet.timestamp] = packet.codecSpecificHeader.codecHeader.VP9.gof; in Insert()
134 ss_map_.clear(); in Reset()
139 for (SsMap::iterator it = ss_map_.begin(); it != ss_map_.end(); ++it) { in Find()
156 ss_map_.erase(ss_map_.begin(), it); in RemoveOld()
161 if (ss_map_.empty() || !IsNewerTimestamp(timestamp, ss_map_.begin()->first)) in TimeForCleanup()
164 uint32_t diff = timestamp - ss_map_.begin()->first; in TimeForCleanup()
169 RTC_DCHECK(!ss_map_.empty()); in AdvanceFront()
170 GofInfoVP9 gof = ss_map_.begin()->second; in AdvanceFront()
171 ss_map_.erase(ss_map_.begin()); in AdvanceFront()
172 ss_map_[timestamp] = gof; in AdvanceFront()
Djitter_buffer.h101 SsMap ss_map_; variable