Home
last modified time | relevance | path

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

/external/webrtc/modules/pacing/
Dround_robin_packet_queue.cc324 auto stream_info_it = streams_.find(packet.Ssrc()); in Push() local
325 if (stream_info_it == streams_.end()) { in Push()
326 stream_info_it = streams_.emplace(packet.Ssrc(), Stream()).first; in Push()
327 stream_info_it->second.priority_it = stream_priorities_.end(); in Push()
328 stream_info_it->second.ssrc = packet.Ssrc(); in Push()
331 Stream* stream = &stream_info_it->second; in Push()
391 auto stream_info_it = streams_.find(ssrc); in GetHighestPriorityStream() local
392 RTC_CHECK(stream_info_it != streams_.end()); in GetHighestPriorityStream()
393 RTC_CHECK(stream_info_it->second.priority_it == stream_priorities_.begin()); in GetHighestPriorityStream()
394 RTC_CHECK(!stream_info_it->second.packet_queue.empty()); in GetHighestPriorityStream()
[all …]