Searched refs:VideoLayerFrameId (Results 1 – 11 of 11) sorted by relevance
/external/webrtc/api/video/ |
D | encoded_frame.h | 23 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;
|
D | video_stream_decoder.h | 37 const video_coding::VideoLayerFrameId& key) = 0;
|
D | video_stream_decoder_create_unittest.cc | 24 void OnContinuousUntil(const video_coding::VideoLayerFrameId& key) override {} in OnContinuousUntil()
|
/external/webrtc/modules/video_coding/utility/ |
D | decoded_frames_history.h | 31 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_;
|
D | decoded_frames_history.cc | 29 void DecodedFramesHistory::InsertDecoded(const VideoLayerFrameId& frameid, in InsertDecoded() 73 bool DecodedFramesHistory::WasDecoded(const VideoLayerFrameId& frameid) { in WasDecoded() 102 absl::optional<VideoLayerFrameId>
|
D | decoded_frames_history_unittest.cc | 111 EXPECT_EQ(history.GetLastDecodedFrameId(), VideoLayerFrameId(1234, 0)); in TEST() 113 EXPECT_EQ(history.GetLastDecodedFrameId(), VideoLayerFrameId(1235, 0)); in TEST()
|
/external/webrtc/modules/video_coding/ |
D | frame_buffer2.h | 96 absl::InlinedVector<VideoLayerFrameId, 8> dependent_frames; 116 using FrameMap = std::map<VideoLayerFrameId, FrameInfo>; 183 absl::optional<VideoLayerFrameId> last_continuous_frame_
|
D | frame_buffer2.cc | 256 [](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/ |
D | video_stream_decoder_impl.h | 99 video_coding::VideoLayerFrameId last_continuous_id_
|
D | video_stream_decoder_impl_unittest.cc | 33 (const video_coding::VideoLayerFrameId& key),
|
D | video_stream_decoder_impl.cc | 68 video_coding::VideoLayerFrameId continuous_id(continuous_pid, 0); in OnFrame()
|