diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/media/remoting/receiver_controller.cc | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/media/remoting/receiver_controller.cc')
-rw-r--r-- | chromium/media/remoting/receiver_controller.cc | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/chromium/media/remoting/receiver_controller.cc b/chromium/media/remoting/receiver_controller.cc new file mode 100644 index 00000000000..549087cf391 --- /dev/null +++ b/chromium/media/remoting/receiver_controller.cc @@ -0,0 +1,116 @@ +// Copyright 2020 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "media/remoting/receiver_controller.h" + +#include "base/single_thread_task_runner.h" +#include "base/threading/thread_task_runner_handle.h" + +namespace media { +namespace remoting { + +// static +ReceiverController* ReceiverController::GetInstance() { + static base::NoDestructor<ReceiverController> controller; + return controller.get(); +} + +ReceiverController::ReceiverController() + : rpc_broker_(base::BindRepeating(&ReceiverController::OnSendRpc, + base::Unretained(this))), + main_task_runner_(base::ThreadTaskRunnerHandle::Get()) {} + +ReceiverController::~ReceiverController() = default; + +void ReceiverController::Initialize( + mojo::PendingRemote<mojom::Remotee> remotee) { + DCHECK(main_task_runner_->BelongsToCurrentThread()); + DCHECK(!media_remotee_.is_bound()); + media_remotee_.Bind(std::move(remotee)); + + // Calling NotifyRemotingSinkReady() to notify the host that RemotingSink is + // ready. + media_remotee_->OnRemotingSinkReady(receiver_.BindNewPipeAndPassRemote()); +} + +void ReceiverController::OnRendererFlush(uint32_t audio_count, + uint32_t video_count) { + if (!main_task_runner_->BelongsToCurrentThread()) { + // |this| is a singleton per process, it would be safe to use + // base::Unretained() here. + main_task_runner_->PostTask( + FROM_HERE, + base::BindOnce(&ReceiverController::OnRendererFlush, + base::Unretained(this), audio_count, video_count)); + return; + } + + if (media_remotee_.is_bound()) + media_remotee_->OnFlushUntil(audio_count, video_count); +} + +void ReceiverController::OnVideoNaturalSizeChange(const gfx::Size& size) { + if (!main_task_runner_->BelongsToCurrentThread()) { + // |this| is a singleton per process, it would be safe to use + // base::Unretained() here. + main_task_runner_->PostTask( + FROM_HERE, base::BindOnce(&ReceiverController::OnVideoNaturalSizeChange, + base::Unretained(this), size)); + return; + } + + if (media_remotee_.is_bound()) + media_remotee_->OnVideoNaturalSizeChange(size); +} + +void ReceiverController::StartDataStreams( + mojo::PendingRemote<::media::mojom::RemotingDataStreamReceiver> + audio_stream, + mojo::PendingRemote<::media::mojom::RemotingDataStreamReceiver> + video_stream) { + if (!main_task_runner_->BelongsToCurrentThread()) { + // |this| is a singleton per process, it would be safe to use + // base::Unretained() here. + main_task_runner_->PostTask( + FROM_HERE, + base::BindOnce(&ReceiverController::StartDataStreams, + base::Unretained(this), std::move(audio_stream), + std::move(video_stream))); + return; + } + if (media_remotee_.is_bound()) { + media_remotee_->StartDataStreams(std::move(audio_stream), + std::move(video_stream)); + } +} + +void ReceiverController::OnMessageFromSource( + const std::vector<uint8_t>& message) { + DCHECK(main_task_runner_->BelongsToCurrentThread()); + auto rpc_message = std::make_unique<pb::RpcMessage>(pb::RpcMessage()); + if (!rpc_message->ParseFromArray(message.data(), message.size())) + return; + + rpc_broker_.ProcessMessageFromRemote(std::move(rpc_message)); +} + +void ReceiverController::OnSendRpc( + std::unique_ptr<std::vector<uint8_t>> message) { + if (!main_task_runner_->BelongsToCurrentThread()) { + // |this| is a singleton per process, it would be safe to use + // base::Unretained() here. + main_task_runner_->PostTask( + FROM_HERE, base::BindOnce(&ReceiverController::OnSendRpc, + base::Unretained(this), std::move(message))); + return; + } + + DCHECK(media_remotee_.is_bound()); + std::vector<uint8_t> binary_message = *message; + if (media_remotee_.is_bound()) + media_remotee_->SendMessageToSource(binary_message); +} + +} // namespace remoting +} // namespace media |