| /* |
| * Copyright (C) 2020 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #pragma once |
| |
| #include <memory> |
| #include <mutex> |
| #include <vector> |
| |
| #include "host/frontend/webrtc/cvd_video_frame_buffer.h" |
| #include "host/frontend/webrtc/lib/video_sink.h" |
| #include "host/libs/screen_connector/screen_connector.h" |
| |
| namespace cuttlefish { |
| /** |
| * ScreenConnectorImpl will generate this, and enqueue |
| * |
| * It's basically a (processed) frame, so it: |
| * must be efficiently std::move-able |
| * Also, for the sake of algorithm simplicity: |
| * must be default-constructable & assignable |
| * |
| */ |
| struct WebRtcScProcessedFrame : public ScreenConnectorFrameInfo { |
| // must support move semantic |
| std::unique_ptr<CvdVideoFrameBuffer> buf_; |
| std::unique_ptr<WebRtcScProcessedFrame> Clone() { |
| // copy internal buffer, not move |
| CvdVideoFrameBuffer* new_buffer = new CvdVideoFrameBuffer(*(buf_.get())); |
| auto cloned_frame = std::make_unique<WebRtcScProcessedFrame>(); |
| cloned_frame->buf_ = |
| std::move(std::unique_ptr<CvdVideoFrameBuffer>(new_buffer)); |
| return std::move(cloned_frame); |
| } |
| }; |
| |
| class DisplayHandler { |
| public: |
| using ScreenConnector = cuttlefish::ScreenConnector<WebRtcScProcessedFrame>; |
| using GenerateProcessedFrameCallback = ScreenConnector::GenerateProcessedFrameCallback; |
| |
| DisplayHandler( |
| std::vector<std::shared_ptr<webrtc_streaming::VideoSink>> display_sinks, |
| ScreenConnector& screen_connector); |
| ~DisplayHandler() = default; |
| |
| [[noreturn]] void Loop(); |
| void SendLastFrame(); |
| |
| private: |
| GenerateProcessedFrameCallback GetScreenConnectorCallback(); |
| std::vector<std::shared_ptr<webrtc_streaming::VideoSink>> display_sinks_; |
| ScreenConnector& screen_connector_; |
| std::shared_ptr<webrtc_streaming::VideoFrameBuffer> last_buffer_; |
| std::uint32_t last_buffer_display_ = 0; |
| std::mutex last_buffer_mutex_; |
| std::mutex next_frame_mutex_; |
| }; |
| } // namespace cuttlefish |