Home
last modified time | relevance | path

Searched refs:decoded_frame (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/src/ipc/
Dbuffered_frame_deserializer_unittest.cc109 auto decoded_frame = bfd.PopNextFrame(); in TEST() local
110 ASSERT_TRUE(decoded_frame); in TEST()
112 decoded_frame->ByteSize()); in TEST()
169 std::unique_ptr<Frame> decoded_frame = bfd.PopNextFrame(); in TEST() local
170 ASSERT_TRUE(decoded_frame); in TEST()
171 ASSERT_TRUE(FrameEq(serialized_frame, *decoded_frame)); in TEST()
193 std::unique_ptr<Frame> decoded_frame = bfd.PopNextFrame(); in TEST() local
194 ASSERT_TRUE(decoded_frame); in TEST()
195 ASSERT_TRUE(FrameEq(frame, *decoded_frame)); in TEST()
216 std::unique_ptr<Frame> decoded_frame = bfd.PopNextFrame(); in TEST() local
[all …]
/external/webrtc/talk/app/webrtc/java/jni/
Dandroidmediadecoder_jni.cc733 VideoFrame decoded_frame(frame_buffer, 0, 0, webrtc::kVideoRotation_0); in DeliverPendingOutputs() local
734 decoded_frame.set_timestamp(output_timestamps_ms); in DeliverPendingOutputs()
735 decoded_frame.set_ntp_time_ms(output_ntp_timestamps_ms); in DeliverPendingOutputs()
740 ". Color: " << color_format << ". TS:" << decoded_frame.timestamp() << in DeliverPendingOutputs()
765 if (!decoded_frame.IsZeroSize()) { in DeliverPendingOutputs()
768 callback_->Decoded(decoded_frame, decode_time_ms); in DeliverPendingOutputs()
/external/webrtc/webrtc/modules/video_coding/codecs/h264/
Dh264_video_toolbox_decoder.cc97 webrtc::VideoFrame decoded_frame(buffer, decode_params->timestamp, 0, in VTDecompressionOutputCallback() local
99 decode_params->callback->Decoded(decoded_frame); in VTDecompressionOutputCallback()