1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/media/service_video_capture_device_launcher.h"
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "build/build_config.h"
#include "content/browser/renderer_host/media/service_launched_video_capture_device.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "media/capture/capture_switches.h"
#include "media/capture/video/video_capture_device.h"
#include "media/capture/video/video_frame_receiver_on_task_runner.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "services/video_capture/public/cpp/receiver_media_to_mojo_adapter.h"
#include "services/video_capture/public/mojom/video_frame_handler.mojom.h"
#include "services/video_effects/public/cpp/buildflags.h"
#if BUILDFLAG(ENABLE_VIDEO_EFFECTS)
#include "services/video_effects/public/mojom/video_effects_processor.mojom-forward.h"
#endif
#if BUILDFLAG(IS_WIN)
#include "media/base/media_switches.h"
#endif
#if BUILDFLAG(IS_LINUX)
#include "content/browser/gpu/gpu_data_manager_impl.h"
#endif
#if BUILDFLAG(IS_MAC)
#include "media/capture/video/apple/video_capture_device_factory_apple.h"
#endif
namespace content {
namespace {
void ConcludeLaunchDeviceWithSuccess(
mojo::Remote<video_capture::mojom::VideoSource> source,
mojo::Remote<video_capture::mojom::PushVideoStreamSubscription>
subscription,
base::OnceClosure connection_lost_cb,
VideoCaptureDeviceLauncher::Callbacks* callbacks,
base::OnceClosure done_cb) {
subscription->Activate();
callbacks->OnDeviceLaunched(
std::make_unique<ServiceLaunchedVideoCaptureDevice>(
std::move(source), std::move(subscription),
std::move(connection_lost_cb)));
std::move(done_cb).Run();
}
void ConcludeLaunchDeviceWithFailure(
bool abort_requested,
media::VideoCaptureError error,
scoped_refptr<RefCountedVideoSourceProvider> service_connection,
VideoCaptureDeviceLauncher::Callbacks* callbacks,
base::OnceClosure done_cb) {
service_connection.reset();
if (abort_requested)
callbacks->OnDeviceLaunchAborted();
else
callbacks->OnDeviceLaunchFailed(error);
std::move(done_cb).Run();
}
} // anonymous namespace
ServiceVideoCaptureDeviceLauncher::ServiceVideoCaptureDeviceLauncher(
ConnectToDeviceFactoryCB connect_to_source_provider_cb)
: connect_to_source_provider_cb_(std::move(connect_to_source_provider_cb)),
state_(State::READY_TO_LAUNCH),
callbacks_(nullptr) {}
ServiceVideoCaptureDeviceLauncher::~ServiceVideoCaptureDeviceLauncher() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(state_ == State::READY_TO_LAUNCH);
}
void ServiceVideoCaptureDeviceLauncher::LaunchDeviceAsync(
const std::string& device_id,
blink::mojom::MediaStreamType stream_type,
const media::VideoCaptureParams& params,
base::WeakPtr<media::VideoFrameReceiver> receiver,
base::OnceClosure connection_lost_cb,
Callbacks* callbacks,
base::OnceClosure done_cb,
#if BUILDFLAG(ENABLE_VIDEO_EFFECTS)
mojo::PendingRemote<video_effects::mojom::VideoEffectsProcessor>
video_effects_processor,
#endif
mojo::PendingRemote<media::mojom::ReadonlyVideoEffectsManager>
readonly_video_effects_manager) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(state_ == State::READY_TO_LAUNCH);
auto scoped_trace = ScopedCaptureTrace::CreateIfEnabled(
"ServiceVideoCaptureDeviceLauncher::LaunchDeviceAsync");
// This launcher only supports MediaStreamType::DEVICE_VIDEO_CAPTURE.
CHECK_EQ(stream_type, blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE);
connect_to_source_provider_cb_.Run(&service_connection_);
if (!service_connection_->source_provider().is_bound()) {
// This can happen when the connection to the service was lost.
ConcludeLaunchDeviceWithFailure(
false,
media::VideoCaptureError::
kServiceDeviceLauncherLostConnectionToDeviceFactoryDuringDeviceStart,
std::move(service_connection_), callbacks, std::move(done_cb));
return;
}
if (receiver) {
std::ostringstream string_stream;
string_stream
<< "ServiceVideoCaptureDeviceLauncher::LaunchDeviceAsync: Asking "
"video capture service to create source for device_id = "
<< device_id;
receiver->OnLog(string_stream.str());
}
// Ownership of |done_cb| is moved to |this|. It is not sufficient to attach
// it to the callback passed to CreatePushSubscription(), because the
// connection to the service may get torn down before |callbacks| are
// invoked.
done_cb_ = std::move(done_cb);
callbacks_ = callbacks;
mojo::Remote<video_capture::mojom::VideoSource> source;
service_connection_->source_provider()->GetVideoSource(
device_id, source.BindNewPipeAndPassReceiver());
#if BUILDFLAG(ENABLE_VIDEO_EFFECTS)
if (video_effects_processor) {
source->RegisterVideoEffectsProcessor(std::move(video_effects_processor));
}
if (readonly_video_effects_manager) {
source->RegisterReadonlyVideoEffectsManager(
std::move(readonly_video_effects_manager));
}
#endif // BUILDFLAG(ENABLE_VIDEO_EFFECTS)
auto receiver_adapter =
std::make_unique<video_capture::ReceiverMediaToMojoAdapter>(
std::make_unique<media::VideoFrameReceiverOnTaskRunner>(
std::move(receiver), GetIOThreadTaskRunner({})));
mojo::PendingRemote<video_capture::mojom::VideoFrameHandler>
pending_remote_proxy;
mojo::MakeSelfOwnedReceiver(
std::move(receiver_adapter),
pending_remote_proxy.InitWithNewPipeAndPassReceiver());
mojo::Remote<video_capture::mojom::PushVideoStreamSubscription> subscription;
// Create message pipe so that we can subsequently call
// subscription.set_disconnect_handler().
auto subscription_receiver = subscription.BindNewPipeAndPassReceiver();
// Use of Unretained(this) is safe, because |done_cb_| guarantees that |this|
// stays alive.
subscription.set_disconnect_handler(
base::BindOnce(&ServiceVideoCaptureDeviceLauncher::
OnConnectionLostWhileWaitingForCallback,
base::Unretained(this)));
// TODO(crbug.com/40610987)
media::VideoCaptureParams new_params = params;
new_params.power_line_frequency =
media::VideoCaptureDevice::GetPowerLineFrequency(params);
// GpuMemoryBuffer-based VideoCapture buffer works only on the Chrome OS,
// Windows and Linux VideoCaptureDevice implementations.
#if BUILDFLAG(IS_WIN)
if (media::IsMediaFoundationD3D11VideoCaptureEnabled() &&
params.requested_format.pixel_format == media::PIXEL_FORMAT_NV12) {
new_params.buffer_type = media::VideoCaptureBufferType::kGpuMemoryBuffer;
}
#elif BUILDFLAG(IS_MAC)
// For mac(https://crbug.com/1175142), zero-copy is always enabled unless the
// user explicitly asks to disable it.
if (media::ShouldEnableGpuMemoryBuffer(device_id)) {
new_params.buffer_type = media::VideoCaptureBufferType::kGpuMemoryBuffer;
}
#else
if (switches::IsVideoCaptureUseGpuMemoryBufferEnabled()) {
#if BUILDFLAG(IS_LINUX)
// On Linux, additionally check whether the NV12 GPU memory buffer is
// supported.
if (GpuDataManagerImpl::GetInstance()->IsGpuMemoryBufferNV12Supported())
#endif
new_params.buffer_type = media::VideoCaptureBufferType::kGpuMemoryBuffer;
}
#endif
// Note that we set |force_reopen_with_new_settings| to true in order
// to avoid the situation that a requests to open (or reopen) a device
// that has just been closed with different settings ends up getting the old
// settings, because from the perspective of the service, the device was still
// in use. In order to be able to set |force_reopen_with_new_settings|, we
// have to refactor code here and upstream to wait for a callback from the
// service indicating that the device closing is complete.
video_capture::mojom::VideoSource* source_ptr = source.get();
source_ptr->CreatePushSubscription(
std::move(pending_remote_proxy), new_params,
true /*force_reopen_with_new_settings*/, std::move(subscription_receiver),
base::BindOnce(
// Use of Unretained |this| is safe, because |done_cb_| guarantees
// that |this| stays alive.
&ServiceVideoCaptureDeviceLauncher::OnCreatePushSubscriptionCallback,
base::Unretained(this), std::move(source), std::move(subscription),
std::move(connection_lost_cb), std::move(scoped_trace)));
state_ = State::DEVICE_START_IN_PROGRESS;
}
void ServiceVideoCaptureDeviceLauncher::AbortLaunch() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (state_ == State::DEVICE_START_IN_PROGRESS)
state_ = State::DEVICE_START_ABORTING;
}
void ServiceVideoCaptureDeviceLauncher::OnCreatePushSubscriptionCallback(
mojo::Remote<video_capture::mojom::VideoSource> source,
mojo::Remote<video_capture::mojom::PushVideoStreamSubscription>
subscription,
base::OnceClosure connection_lost_cb,
std::unique_ptr<ScopedCaptureTrace> scoped_trace,
video_capture::mojom::CreatePushSubscriptionResultCodePtr result_code,
const media::VideoCaptureParams& params) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(callbacks_);
DCHECK(done_cb_);
subscription.set_disconnect_handler(base::DoNothing());
const bool abort_requested = (state_ == State::DEVICE_START_ABORTING);
state_ = State::READY_TO_LAUNCH;
Callbacks* callbacks = callbacks_;
callbacks_ = nullptr;
switch (result_code->which()) {
case video_capture::mojom::CreatePushSubscriptionResultCode::Tag::
kSuccessCode:
if (abort_requested) {
subscription.reset();
source.reset();
service_connection_.reset();
callbacks->OnDeviceLaunchAborted();
std::move(done_cb_).Run();
return;
}
ConcludeLaunchDeviceWithSuccess(
std::move(source), std::move(subscription),
std::move(connection_lost_cb), callbacks, std::move(done_cb_));
return;
case video_capture::mojom::CreatePushSubscriptionResultCode::Tag::
kErrorCode:
media::VideoCaptureError error = result_code->get_error_code();
DCHECK_NE(error, media::VideoCaptureError::kNone);
ConcludeLaunchDeviceWithFailure(abort_requested, error,
std::move(service_connection_), callbacks,
std::move(done_cb_));
return;
}
}
void ServiceVideoCaptureDeviceLauncher::
OnConnectionLostWhileWaitingForCallback() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(callbacks_);
const bool abort_requested = (state_ == State::DEVICE_START_ABORTING);
state_ = State::READY_TO_LAUNCH;
Callbacks* callbacks = callbacks_;
callbacks_ = nullptr;
ConcludeLaunchDeviceWithFailure(
abort_requested,
media::VideoCaptureError::
kServiceDeviceLauncherConnectionLostWhileWaitingForCallback,
std::move(service_connection_), callbacks, std::move(done_cb_));
}
} // namespace content
|