Home
last modified time | relevance | path

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

/external/openscreen/cast/standalone_sender/
Dsimulated_capturer.cc38 decoded_frame_(MakeUniqueAVFrame()), in SimulatedCapturer()
163 avcodec_receive_frame(decoder_context_.get(), decoded_frame_.get()); in ConsumeNextDecodedFrame()
182 decoded_frame_->best_effort_timestamp, in ConsumeNextDecodedFrame()
190 av_frame_unref(decoded_frame_.get()); in ConsumeNextDecodedFrame()
203 const auto delay_adjustment_or_null = ProcessDecodedFrame(*decoded_frame_); in ConsumeNextDecodedFrame()
205 av_frame_unref(decoded_frame_.get()); in ConsumeNextDecodedFrame()
212 DeliverDataToClient(*decoded_frame_, capture_time); in ConsumeNextDecodedFrame()
213 av_frame_unref(decoded_frame_.get()); in ConsumeNextDecodedFrame()
Dsimulated_capturer.h95 const AVFrameUniquePtr decoded_frame_; // Decoder output frame. variable
/external/webrtc/modules/video_coding/codecs/test/
Dvideo_codec_unittest.cc62 test_->decoded_frame_.emplace(frame); in Decoded()
161 EXPECT_TRUE(decoded_frame_); in WaitForDecodedFrame()
162 if (decoded_frame_) { in WaitForDecodedFrame()
163 frame->reset(new VideoFrame(std::move(*decoded_frame_))); in WaitForDecodedFrame()
165 decoded_frame_.reset(); in WaitForDecodedFrame()
Dvideo_codec_unittest.h120 absl::optional<VideoFrame> decoded_frame_
/external/openscreen/cast/standalone_receiver/
Ddecoder.cc88 avcodec_receive_frame(context_.get(), decoded_frame_.get()); in Decode()
98 client_->OnFrameDecoded(decoded_frame_id, *decoded_frame_); in Decode()
100 av_frame_unref(decoded_frame_.get()); in Decode()
153 decoded_frame_ = MakeUniqueAVFrame(); in Initialize()
154 if (!decoded_frame_) { in Initialize()
Ddecoder.h87 AVFrameUniquePtr decoded_frame_; variable