Home
last modified time | relevance | path

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

/external/webrtc/api/video/
Dencoded_frame.h23 struct VideoLayerFrameId { struct
26 VideoLayerFrameId() : picture_id(-1), spatial_layer(0) {} in VideoLayerFrameId() function
27 VideoLayerFrameId(int64_t picture_id, uint8_t spatial_layer) in VideoLayerFrameId() function
30 bool operator==(const VideoLayerFrameId& rhs) const {
34 bool operator!=(const VideoLayerFrameId& rhs) const {
38 bool operator<(const VideoLayerFrameId& rhs) const {
44 bool operator<=(const VideoLayerFrameId& rhs) const { return !(rhs < *this); }
45 bool operator>(const VideoLayerFrameId& rhs) const { return rhs < *this; }
46 bool operator>=(const VideoLayerFrameId& rhs) const { return rhs <= *this; }
76 VideoLayerFrameId id;
Dvideo_stream_decoder.h37 const video_coding::VideoLayerFrameId& key) = 0;
Dvideo_stream_decoder_create_unittest.cc24 void OnContinuousUntil(const video_coding::VideoLayerFrameId& key) override {} in OnContinuousUntil()
/external/webrtc/modules/video_coding/utility/
Ddecoded_frames_history.h31 void InsertDecoded(const VideoLayerFrameId& frameid, uint32_t timestamp);
34 bool WasDecoded(const VideoLayerFrameId& frameid);
38 absl::optional<VideoLayerFrameId> GetLastDecodedFrameId();
54 absl::optional<VideoLayerFrameId> last_decoded_frame_;
Ddecoded_frames_history.cc29 void DecodedFramesHistory::InsertDecoded(const VideoLayerFrameId& frameid, in InsertDecoded()
73 bool DecodedFramesHistory::WasDecoded(const VideoLayerFrameId& frameid) { in WasDecoded()
102 absl::optional<VideoLayerFrameId>
Ddecoded_frames_history_unittest.cc111 EXPECT_EQ(history.GetLastDecodedFrameId(), VideoLayerFrameId(1234, 0)); in TEST()
113 EXPECT_EQ(history.GetLastDecodedFrameId(), VideoLayerFrameId(1235, 0)); in TEST()
/external/webrtc/modules/video_coding/
Dframe_buffer2.h96 absl::InlinedVector<VideoLayerFrameId, 8> dependent_frames;
116 using FrameMap = std::map<VideoLayerFrameId, FrameInfo>;
183 absl::optional<VideoLayerFrameId> last_continuous_frame_
Dframe_buffer2.cc256 [](const std::pair<const VideoLayerFrameId, FrameInfo>& frame) { in GetNextFrame() argument
390 VideoLayerFrameId id = frame.id; in IsCompleteSuperFrame()
411 VideoLayerFrameId id = frame.id; in IsCompleteSuperFrame()
436 const VideoLayerFrameId& id = frame->id; in InsertFrame()
595 const VideoLayerFrameId& id = frame.id; in UpdateFrameInfoWithIncomingFrame()
609 VideoLayerFrameId id; in UpdateFrameInfoWithIncomingFrame()
616 VideoLayerFrameId ref_key(frame.references[i], frame.id.spatial_layer); in UpdateFrameInfoWithIncomingFrame()
643 VideoLayerFrameId ref_key(frame.id.picture_id, frame.id.spatial_layer - 1); in UpdateFrameInfoWithIncomingFrame()
703 [](const std::pair<const VideoLayerFrameId, FrameInfo>& frame) { in ClearFramesAndHistory() argument
/external/webrtc/video/
Dvideo_stream_decoder_impl.h99 video_coding::VideoLayerFrameId last_continuous_id_
Dvideo_stream_decoder_impl_unittest.cc33 (const video_coding::VideoLayerFrameId& key),
Dvideo_stream_decoder_impl.cc68 video_coding::VideoLayerFrameId continuous_id(continuous_pid, 0); in OnFrame()