Home
last modified time | relevance | path

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

/external/openscreen/cast/streaming/
Dsender.h251 return &pending_frames_[(frame_id - FrameId::first()) % in get_slot_for()
252 pending_frames_.size()]; in get_slot_for()
255 return &pending_frames_[(frame_id - FrameId::first()) % in get_slot_for()
256 pending_frames_.size()]; in get_slot_for()
271 std::array<PendingFrameSlot, kMaxUnackedFrames> pending_frames_{};
Dreceiver.h321 std::array<PendingFrame, kMaxUnackedFrames> pending_frames_{};
Dreceiver.cc366 return pending_frames_[(frame_id - FrameId::first()) % in GetQueueEntry()
367 pending_frames_.size()]; in GetQueueEntry()
/external/webrtc/modules/video_coding/codecs/vp8/
Ddefault_temporal_layers.cc375 for (auto& it : pending_frames_) { in NextFrameConfig()
410 pending_frames_[timestamp] = in NextFrameConfig()
494 auto pending_frame = pending_frames_.find(rtp_timestamp); in OnEncodeDone()
495 RTC_DCHECK(pending_frame != pending_frames_.end()); in OnEncodeDone()
586 pending_frames_.erase(pending_frame); in OnEncodeDone()
591 auto pending_frame = pending_frames_.find(rtp_timestamp); in OnFrameDropped()
592 RTC_DCHECK(pending_frame != pending_frames_.end()); in OnFrameDropped()
593 pending_frames_.erase(pending_frame); in OnFrameDropped()
Ddefault_temporal_layers.h117 std::map<uint32_t, PendingFrame> pending_frames_; variable