Home
last modified time | relevance | path

Searched refs:WriteFrame (Results 1 – 25 of 70) sorted by relevance

123

/external/webrtc/test/testsupport/
Dfixed_fps_video_frame_writer_adapter_test.cc39 bool WriteFrame(const webrtc::VideoFrame& frame) override { in WriteFrame() function in webrtc::test::__anon8f88101f0111::InMemoryVideoWriter
91 video_writer.WriteFrame(EmptyFrameWithId(i)); in TEST()
116 video_writer.WriteFrame(EmptyFrameWithId(i)); in TEST()
125 video_writer.WriteFrame(EmptyFrameWithId(i)); in TEST()
165 video_writer.WriteFrame(EmptyFrameWithId(1)); in TEST()
167 video_writer.WriteFrame(EmptyFrameWithId(2)); in TEST()
186 video_writer.WriteFrame(EmptyFrameWithId(1)); in TEST()
188 video_writer.WriteFrame(EmptyFrameWithId(2)); in TEST()
207 video_writer.WriteFrame(EmptyFrameWithId(1)); in TEST()
209 video_writer.WriteFrame(EmptyFrameWithId(2)); in TEST()
[all …]
Dframe_writer.h35 virtual bool WriteFrame(const uint8_t* frame_buffer) = 0;
57 bool WriteFrame(const uint8_t* frame_buffer) override;
79 bool WriteFrame(const uint8_t* frame_buffer) override;
91 bool WriteFrame(const VideoFrame& input_frame, int quality);
Dfixed_fps_video_frame_writer_adapter.cc52 RTC_CHECK(delegate_->WriteFrame(*last_frame_)); in Close()
56 bool FixedFpsVideoFrameWriterAdapter::WriteFrame(const VideoFrame& frame) { in WriteFrame() function in webrtc::test::FixedFpsVideoFrameWriterAdapter
89 if (!delegate_->WriteFrame(*last_frame_)) { in WriteFrame()
101 if (!delegate_->WriteFrame(*last_frame_)) { in WriteMissedSlotsExceptLast()
Dy4m_frame_writer_unittest.cc60 TEST_F(Y4mFrameWriterTest, WriteFrame) { in TEST_F() argument
63 bool result = frame_writer_->WriteFrame(buffer); in TEST_F()
65 result = frame_writer_->WriteFrame(buffer); in TEST_F()
77 EXPECT_FALSE(frame_writer.WriteFrame(buffer)); in TEST_F()
Dvideo_frame_writer_unittest.cc128 TEST_F(Y4mVideoFrameWriterTest, WriteFrame) { in TEST_F() argument
135 ASSERT_TRUE(frame_writer_->WriteFrame(frame)); in TEST_F()
136 ASSERT_TRUE(frame_writer_->WriteFrame(frame)); in TEST_F()
154 TEST_F(YuvVideoFrameWriterTest, WriteFrame) { in TEST_F() argument
161 ASSERT_TRUE(frame_writer_->WriteFrame(frame)); in TEST_F()
162 ASSERT_TRUE(frame_writer_->WriteFrame(frame)); in TEST_F()
Dvideo_frame_writer.cc74 bool Y4mVideoFrameWriterImpl::WriteFrame(const webrtc::VideoFrame& frame) { in WriteFrame() function in webrtc::test::Y4mVideoFrameWriterImpl
77 return frame_writer_->WriteFrame(frame_buffer.data()); in WriteFrame()
100 bool YuvVideoFrameWriterImpl::WriteFrame(const webrtc::VideoFrame& frame) { in WriteFrame() function in webrtc::test::YuvVideoFrameWriterImpl
103 return frame_writer_->WriteFrame(frame_buffer.data()); in WriteFrame()
Dyuv_frame_writer_unittest.cc56 TEST_F(YuvFrameWriterTest, WriteFrame) { in TEST_F() argument
59 bool result = frame_writer_->WriteFrame(buffer); in TEST_F()
69 EXPECT_FALSE(frame_writer.WriteFrame(buffer)); in TEST_F()
Dy4m_frame_writer.cc44 bool Y4mFrameWriterImpl::WriteFrame(const uint8_t* frame_buffer) { in WriteFrame() function in webrtc::test::Y4mFrameWriterImpl
55 return YuvFrameWriterImpl::WriteFrame(frame_buffer); in WriteFrame()
Dvideo_frame_writer.h34 bool WriteFrame(const webrtc::VideoFrame& frame) override;
50 bool WriteFrame(const webrtc::VideoFrame& frame) override;
Djpeg_frame_writer_ios.cc20 bool JpegFrameWriter::WriteFrame(const VideoFrame& /*input_frame*/, in WriteFrame() function in webrtc::test::JpegFrameWriter
Dfixed_fps_video_frame_writer_adapter.h56 bool WriteFrame(const webrtc::VideoFrame& frame) override;
/external/rust/android-crates-io/crates/tokio-util/src/codec/
Dframed_impl.rs35 pub(crate) struct WriteFrame { struct
43 pub(crate) write: WriteFrame, argument
57 impl Default for WriteFrame { implementation
82 impl From<BytesMut> for WriteFrame { implementation
106 impl Borrow<WriteFrame> for RWFrames {
107 fn borrow(&self) -> &WriteFrame { in borrow() argument
111 impl BorrowMut<WriteFrame> for RWFrames {
112 fn borrow_mut(&mut self) -> &mut WriteFrame { in borrow_mut() argument
257 W: BorrowMut<WriteFrame>,
283 let WriteFrame { buffer, .. } = pinned.state.borrow_mut(); in poll_flush() localVariable
Dframed_write.rs2 use crate::codec::framed_impl::{FramedImpl, WriteFrame};
32 inner: FramedImpl<T, E, WriteFrame>,
46 state: WriteFrame::default(), in new()
Dmod.rs338 pub(crate) use self::framed_impl::{FramedImpl, RWFrames, ReadFrame, WriteFrame};
/external/webrtc/test/pc/e2e/analyzer/video/
Dvideo_dumping.cc41 bool WriteFrame(const VideoFrame& frame) override { in WriteFrame() function in webrtc::webrtc_pc_e2e::__anone73805320111::VideoFrameIdsWriter
73 bool WriteFrame(const webrtc::VideoFrame& frame) override { in WriteFrame() function in webrtc::webrtc_pc_e2e::__anone73805320111::BroadcastingFrameWriter
75 if (!delegate->WriteFrame(frame)) { in WriteFrame()
102 bool result = video_writer_->WriteFrame(frame); in OnFrame()
/external/perfetto/src/profiling/memory/
Dbookkeeping_dump.cc34 void DumpState::WriteFrame(Interned<Frame> frame) { in WriteFrame() function in perfetto::profiling::DumpState
35 intern_state_->WriteFrame(frame, GetCurrentInternedData()); in WriteFrame()
/external/v4l2_codec2/tests/c2_e2e_test/jni/
Dcommon.h119 bool WriteFrame(const uint8_t* data, uint32_t data_size, uint64_t timestamp);
137 bool WriteFrame(uint32_t data_size, const uint8_t* data);
Dcommon.cpp120 bool IVFWriter::WriteFrame(const uint8_t* data, uint32_t data_size, uint64_t timestamp) { in WriteFrame() function in android::IVFWriter
165 bool OutputFile::WriteFrame(uint32_t data_size, const uint8_t* data) { in WriteFrame() function in android::OutputFile
167 return (ivf_writer_->WriteFrame(data, data_size, frame_index_++)); in WriteFrame()
/external/armnn/samples/common/include/CVUtils/
DIFrameOutput.hpp27 virtual void WriteFrame(std::shared_ptr <FrameDataT>& frame) = 0;
DCvWindowOutput.hpp36 void WriteFrame(std::shared_ptr<cv::Mat>& frame) override;
DCvVideoFileWriter.hpp44 void WriteFrame(std::shared_ptr<cv::Mat>& frame) override;
/external/webrtc/api/test/video/
Dvideo_frame_writer.h27 virtual bool WriteFrame(const VideoFrame& frame) = 0;
/external/armnn/samples/common/src/CVUtils/
DCvWindowOutput.cpp17 void CvWindowOutput::WriteFrame(std::shared_ptr<cv::Mat>& frame) in WriteFrame() function in common::CvWindowOutput
DCvVideoFileWriter.cpp20 void CvVideoFileWriter::WriteFrame(std::shared_ptr<cv::Mat>& frame) in WriteFrame() function in common::CvVideoFileWriter
/external/perfetto/src/profiling/common/
Dinterning_output.cc82 void InterningOutputTracker::WriteFrame(Interned<Frame> frame, in WriteFrame() function in perfetto::profiling::InterningOutputTracker
157 WriteFrame(frame, out); in WriteCallstack()

123