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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
|
// Copyright 2022 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/media/capture/screen_capture_kit_device_mac.h"
#import <ScreenCaptureKit/ScreenCaptureKit.h>
#include <optional>
#include <tuple>
#include "base/apple/bridging.h"
#include "base/apple/foundation_util.h"
#include "base/task/bind_post_task.h"
#import "base/task/single_thread_task_runner.h"
#include "base/threading/thread_checker.h"
#include "base/timer/timer.h"
#include "content/browser/media/capture/io_surface_capture_device_base_mac.h"
#include "content/browser/media/capture/screen_capture_kit_fullscreen_module.h"
#include "content/public/common/content_features.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capture_types.h"
#include "ui/gfx/native_widget_types.h"
using SampleCallback = base::RepeatingCallback<void(gfx::ScopedInUseIOSurface,
std::optional<gfx::Size>,
std::optional<gfx::Rect>,
std::optional<float>,
bool)>;
using ErrorCallback = base::RepeatingClosure;
namespace {
API_AVAILABLE(macos(12.3))
std::tuple<std::optional<gfx::Rect>,
std::optional<gfx::Size>,
std::optional<float>>
GetVisibleRectAndContentSize(CFDictionaryRef attachment) {
std::optional<gfx::Rect> visibleRect;
std::optional<gfx::Size> contentSize;
float scaleFactor = 1.0f;
CFDictionaryRef contentRectValue = base::apple::CFCast<CFDictionaryRef>(
CFDictionaryGetValue(attachment, base::apple::NSToCFPtrCast(
SCStreamFrameInfoContentRect)));
CFNumberRef scaleFactorValue = base::apple::CFCast<CFNumberRef>(
CFDictionaryGetValue(attachment, base::apple::NSToCFPtrCast(
SCStreamFrameInfoScaleFactor)));
CFNumberRef contentScaleValue = base::apple::CFCast<CFNumberRef>(
CFDictionaryGetValue(attachment, base::apple::NSToCFPtrCast(
SCStreamFrameInfoContentScale)));
if (contentRectValue && scaleFactorValue && contentScaleValue) {
CGRect contentRect = {};
bool succeed =
CGRectMakeWithDictionaryRepresentation(contentRectValue, &contentRect);
succeed &=
CFNumberGetValue(scaleFactorValue, kCFNumberFloatType, &scaleFactor);
float contentScale = 1.0f;
succeed &=
CFNumberGetValue(contentScaleValue, kCFNumberFloatType, &contentScale);
if (succeed) {
contentRect.origin.x *= scaleFactor;
contentRect.origin.y *= scaleFactor;
contentRect.size.width *= scaleFactor;
contentRect.size.height *= scaleFactor;
visibleRect.emplace(contentRect);
// Make sure the size of the visible rect is even to not cause problems in
// later processing (crbug.com/394238799).
visibleRect->set_width(visibleRect->width() & ~1);
visibleRect->set_height(visibleRect->height() & ~1);
contentSize.emplace(round(contentRect.size.width / contentScale),
round(contentRect.size.height / contentScale));
}
}
return std::make_tuple(visibleRect, contentSize, scaleFactor);
}
bool IsPresenterOverlayLargeActive(CFDictionaryRef attachment) {
if (@available(macOS 14.2, *)) {
CFDictionaryRef overlayContentRectValue =
base::apple::CFCast<CFDictionaryRef>(CFDictionaryGetValue(
attachment, base::apple::NSToCFPtrCast(
SCStreamFrameInfoPresenterOverlayContentRect)));
if (!overlayContentRectValue) {
return false;
}
CGRect overlayContentRect = {};
bool succeed = CGRectMakeWithDictionaryRepresentation(
overlayContentRectValue, &overlayContentRect);
// From local testing:
// height > 0 and width > 0 signal that the presenter overlay is active.
// x == y == 0 is used for the small overlay, where the capture size is the
// same as the original content size.
// x > 0 and y > 0 signal that the large overlay that is causing problems is
// active. In this case the original screen capture is overlayed on the
// frames captured by the camera with the presenter in the foreground.
if (succeed && overlayContentRect.size.width > 0 &&
overlayContentRect.size.height > 0 && overlayContentRect.origin.x > 0 &&
overlayContentRect.origin.y > 0) {
return true;
}
}
return false;
}
// Creates a size object with even dimensions by expanding the original size in
// the case one of its dimension is odd. The rounding upwards is needed to
// ensure that windows that have odd dimensions are not scaled down, which would
// cause the capture to be blurry (crbug.com/394238799).
gfx::Size CreateEvenSize(const gfx::Size& original_size) {
int width = original_size.width();
int height = original_size.height();
width += width & 1;
height += height & 1;
return {width, height};
}
} // namespace
API_AVAILABLE(macos(12.3))
@interface ScreenCaptureKitDeviceHelper
: NSObject <SCStreamDelegate, SCStreamOutput>
- (instancetype)initWithSampleCallback:(SampleCallback)sampleCallback
errorCallback:(ErrorCallback)errorCallback;
@end
@implementation ScreenCaptureKitDeviceHelper {
SampleCallback _sampleCallback;
ErrorCallback _errorCallback;
}
- (instancetype)initWithSampleCallback:(SampleCallback)sampleCallback
errorCallback:(ErrorCallback)errorCallback {
if (self = [super init]) {
_sampleCallback = sampleCallback;
_errorCallback = errorCallback;
}
return self;
}
- (void)stream:(SCStream*)stream
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
ofType:(SCStreamOutputType)type {
CVPixelBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
if (!pixelBuffer)
return;
// Read out width, height and scaling from metadata to determine
// |contentSize|, which is the size of the content on screen, and
// |visibleRect|, which is the region of the IOSurface that contains the
// captured content. |contentSize| is used to detect when a captured window is
// resized so that the stream configuration can be updated and |visibleRect|
// is needed because the IOSurface may be larger than the captured content.
std::optional<gfx::Size> contentSize;
std::optional<gfx::Rect> visibleRect;
std::optional<float> scaleFactor;
bool isPresenterOverlayLargeActive = false;
CFArrayRef attachmentsArray = CMSampleBufferGetSampleAttachmentsArray(
sampleBuffer, /*createIfNecessary=*/false);
if (attachmentsArray && CFArrayGetCount(attachmentsArray) > 0) {
CFDictionaryRef attachment = base::apple::CFCast<CFDictionaryRef>(
CFArrayGetValueAtIndex(attachmentsArray, 0));
if (attachment) {
std::tie(visibleRect, contentSize, scaleFactor) =
GetVisibleRectAndContentSize(attachment);
isPresenterOverlayLargeActive = IsPresenterOverlayLargeActive(attachment);
}
}
IOSurfaceRef ioSurface = CVPixelBufferGetIOSurface(pixelBuffer);
if (!ioSurface)
return;
_sampleCallback.Run(
gfx::ScopedInUseIOSurface(ioSurface, base::scoped_policy::RETAIN),
contentSize, visibleRect, scaleFactor, isPresenterOverlayLargeActive);
}
- (void)stream:(SCStream*)stream didStopWithError:(NSError*)error {
_errorCallback.Run();
}
+ (SCStreamConfiguration*)streamConfigurationWithFrameSize:(gfx::Size)frameSize
destRectInFrame:
(gfx::RectF)destRectInFrame
frameRate:(float)frameRate {
SCStreamConfiguration* config = [[SCStreamConfiguration alloc] init];
config.width = frameSize.width();
config.height = frameSize.height();
config.pixelFormat = kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange;
config.destinationRect = destRectInFrame.ToCGRect();
config.backgroundColor = CGColorGetConstantColor(kCGColorBlack);
config.scalesToFit = NO;
config.showsCursor = YES;
config.colorSpaceName = kCGColorSpaceSRGB;
config.minimumFrameInterval =
CMTimeMake(media::kFrameRatePrecision,
static_cast<int>(frameRate * media::kFrameRatePrecision));
return config;
}
@end
namespace content {
namespace {
BASE_FEATURE(kScreenCaptureKitFullDesktopFallback,
"ScreenCaptureKitFullDesktopFallback",
base::FEATURE_ENABLED_BY_DEFAULT);
class API_AVAILABLE(macos(12.3)) ScreenCaptureKitDeviceMac
: public IOSurfaceCaptureDeviceBase,
public ScreenCaptureKitResetStreamInterface {
public:
explicit ScreenCaptureKitDeviceMac(const DesktopMediaID& source,
SCContentFilter* filter)
: source_(source),
filter_(filter),
device_task_runner_(base::SingleThreadTaskRunner::GetCurrentDefault()) {
SampleCallback sample_callback = base::BindPostTask(
device_task_runner_,
base::BindRepeating(&ScreenCaptureKitDeviceMac::OnStreamSample,
weak_factory_.GetWeakPtr()));
ErrorCallback error_callback = base::BindPostTask(
device_task_runner_,
base::BindRepeating(&ScreenCaptureKitDeviceMac::OnStreamError,
weak_factory_.GetWeakPtr()));
helper_ = [[ScreenCaptureKitDeviceHelper alloc]
initWithSampleCallback:sample_callback
errorCallback:error_callback];
}
ScreenCaptureKitDeviceMac(const ScreenCaptureKitDeviceMac&) = delete;
ScreenCaptureKitDeviceMac& operator=(const ScreenCaptureKitDeviceMac&) =
delete;
~ScreenCaptureKitDeviceMac() override = default;
void OnShareableContentCreated(SCShareableContent* content) {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (!content) {
client()->OnError(
media::VideoCaptureError::kScreenCaptureKitFailedGetShareableContent,
FROM_HERE, "Failed getShareableContentWithCompletionHandler");
return;
}
SCContentFilter* filter;
switch (source_.type) {
case DesktopMediaID::TYPE_SCREEN:
for (SCDisplay* display in content.displays) {
// There's currently no support for stitching desktops together as
// requested by kFullDesktopScreenId. Capture the first display as a
// fallback. See https://crbug.com/325530044.
if (source_.id == display.displayID ||
source_.id == webrtc::kFullDesktopScreenId) {
filter = [[SCContentFilter alloc] initWithDisplay:display
excludingWindows:@[]];
stream_config_content_size_ =
gfx::Size(display.width, display.height);
break;
}
}
break;
case DesktopMediaID::TYPE_WINDOW:
for (SCWindow* window in content.windows) {
if (source_.id == window.windowID) {
filter = [[SCContentFilter alloc]
initWithDesktopIndependentWindow:window];
CGRect frame = window.frame;
stream_config_content_size_ = gfx::Size(frame.size);
if (!fullscreen_module_) {
fullscreen_module_ = MaybeCreateScreenCaptureKitFullscreenModule(
device_task_runner_, *this, window);
}
}
}
break;
default:
NOTREACHED();
}
CreateStream(filter);
}
void CreateStream(SCContentFilter* filter) {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (!filter) {
client()->OnError(
media::VideoCaptureError::kScreenCaptureKitFailedToFindSCDisplay,
FROM_HERE, "Failed to find SCDisplay");
return;
}
if (@available(macOS 14.0, *)) {
// Update the content size. This step is neccessary when used together
// with SCContentSharingPicker. If the Chrome picker is used, it will
// change to retina resolution if applicable.
stream_config_content_size_ =
gfx::Size(filter.contentRect.size.width * filter.pointPixelScale,
filter.contentRect.size.height * filter.pointPixelScale);
}
gfx::RectF dest_rect_in_frame;
actual_capture_format_ = capture_params().requested_format;
actual_capture_format_.pixel_format = media::PIXEL_FORMAT_NV12;
ComputeFrameSizeAndDestRect(CreateEvenSize(stream_config_content_size_),
actual_capture_format_.frame_size,
dest_rect_in_frame);
SCStreamConfiguration* config = [ScreenCaptureKitDeviceHelper
streamConfigurationWithFrameSize:actual_capture_format_.frame_size
destRectInFrame:dest_rect_in_frame
frameRate:actual_capture_format_.frame_rate];
stream_ = [[SCStream alloc] initWithFilter:filter
configuration:config
delegate:helper_];
{
NSError* error = nil;
bool add_stream_output_result =
[stream_ addStreamOutput:helper_
type:SCStreamOutputTypeScreen
sampleHandlerQueue:dispatch_get_main_queue()
error:&error];
if (!add_stream_output_result) {
stream_ = nil;
client()->OnError(
media::VideoCaptureError::kScreenCaptureKitFailedAddStreamOutput,
FROM_HERE, "Failed addStreamOutput");
return;
}
}
auto stream_started_callback = base::BindPostTask(
device_task_runner_,
base::BindRepeating(&ScreenCaptureKitDeviceMac::OnStreamStarted,
weak_factory_.GetWeakPtr()));
auto handler = ^(NSError* error) {
stream_started_callback.Run(!!error);
};
[stream_ startCaptureWithCompletionHandler:handler];
}
void OnStreamStarted(bool error) {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (error) {
client()->OnError(
media::VideoCaptureError::kScreenCaptureKitFailedStartCapture,
FROM_HERE, "Failed startCaptureWithCompletionHandler");
return;
}
client()->OnStarted();
if (fullscreen_module_) {
fullscreen_module_->Start();
}
}
void OnStreamStopped(bool error) {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (error) {
client()->OnError(
media::VideoCaptureError::kScreenCaptureKitFailedStopCapture,
FROM_HERE, "Failed stopCaptureWithCompletionHandler");
return;
}
}
void OnStreamSample(gfx::ScopedInUseIOSurface io_surface,
std::optional<gfx::Size> content_size,
std::optional<gfx::Rect> visible_rect,
std::optional<float> scale_factor,
bool is_presenter_overlay_large_active) {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (requested_capture_format_) {
// Does the size of io_surface match the requested format?
size_t io_surface_width = IOSurfaceGetWidth(io_surface.get());
size_t io_surface_height = IOSurfaceGetHeight(io_surface.get());
DVLOG(3) << "Waiting for new capture format, "
<< requested_capture_format_->frame_size.width() << " x "
<< requested_capture_format_->frame_size.height()
<< ". IO surface size " << io_surface_width << " x "
<< io_surface_height;
if (static_cast<size_t>(requested_capture_format_->frame_size.width()) ==
io_surface_width &&
static_cast<size_t>(requested_capture_format_->frame_size.height()) ==
io_surface_height) {
actual_capture_format_ = requested_capture_format_.value();
requested_capture_format_.reset();
}
} else {
// No current request for new capture format. Check to see if content_size
// has changed and requires an updated configuration. We only track the
// content size for window capturing since the resolution does not
// normally change during a session and because the content scale is wrong
// for retina displays.
if (source_.type == DesktopMediaID::TYPE_WINDOW && content_size &&
(stream_config_content_size_.width() != content_size->width() ||
stream_config_content_size_.height() != content_size->height())) {
DVLOG(3) << "Content size changed to " << content_size->width() << " x "
<< content_size->height() << ". It was "
<< stream_config_content_size_.width() << " x "
<< stream_config_content_size_.height();
stream_config_content_size_ = content_size.value();
gfx::RectF dest_rect_in_frame;
gfx::Size new_frame_size;
ComputeFrameSizeAndDestRect(CreateEvenSize(stream_config_content_size_),
new_frame_size, dest_rect_in_frame);
// There's a small variation in the reported content size when the large
// presenter overlay is active which may result in updateConfiguration()
// being repeatedly called at a high frequency toggling between two
// different sizes. Avoid this by not reacting on too small changes.
// The threshold was determined by local testing.
constexpr int kDefaultThreshold = 1;
constexpr int kPresenterOverlayLargeThreshold = 4;
int threshold = is_presenter_overlay_large_active
? kPresenterOverlayLargeThreshold
: kDefaultThreshold;
if (std::abs(new_frame_size.width() -
actual_capture_format_.frame_size.width()) >= threshold ||
std::abs(new_frame_size.height() -
actual_capture_format_.frame_size.height()) >= threshold) {
DVLOG(3) << "Calling updateConfiguration with new frame size: "
<< new_frame_size.width() << " x "
<< new_frame_size.height();
requested_capture_format_ = actual_capture_format_;
requested_capture_format_->frame_size = new_frame_size;
// Update stream configuration.
SCStreamConfiguration* config = [ScreenCaptureKitDeviceHelper
streamConfigurationWithFrameSize:requested_capture_format_
->frame_size
destRectInFrame:dest_rect_in_frame
frameRate:requested_capture_format_->
frame_rate];
__block base::OnceCallback<void()> on_update_configuration_error =
base::BindPostTask(
device_task_runner_,
base::BindOnce(
&ScreenCaptureKitDeviceMac::OnUpdateConfigurationError,
weak_factory_.GetWeakPtr()));
[stream_
updateConfiguration:config
completionHandler:^(NSError* _Nullable error) {
if (error) {
std::move(on_update_configuration_error).Run();
}
}];
}
}
}
// The IO surface may be larger than the actual content size. Pass on
// visible rect to be able to render/encode the frame correctly.
// `content_size` is passed to know the actual content size for the
// metadata.
OnReceivedIOSurfaceFromStream(
io_surface, actual_capture_format_,
visible_rect.value_or(gfx::Rect(actual_capture_format_.frame_size)),
content_size, scale_factor);
}
void OnStreamError() {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (is_resetting_ || (fullscreen_module_ &&
fullscreen_module_->is_fullscreen_window_active())) {
// Clear `is_resetting_` because the completion handler in ResetStreamTo()
// may not be called if there's an error.
is_resetting_ = false;
// The stream_ is no longer valid. Restart the stream from scratch.
if (fullscreen_module_) {
fullscreen_module_->Reset();
}
OnStart();
} else {
client()->OnError(media::VideoCaptureError::kScreenCaptureKitStreamError,
FROM_HERE, "Stream delegate called didStopWithError");
}
}
void OnUpdateContentFilterCompleted(NSError* _Nullable error) {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
is_resetting_ = false;
if (error) {
client()->OnError(media::VideoCaptureError::kScreenCaptureKitStreamError,
FROM_HERE,
"Error on updateContentFilter (fullscreen window).");
}
}
void OnUpdateConfigurationError() {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
client()->OnError(media::VideoCaptureError::kScreenCaptureKitStreamError,
FROM_HERE, "Error on updateConfiguration");
}
// IOSurfaceCaptureDeviceBase:
void OnStart() override {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (filter_) {
// SCContentSharingPicker is used where filter_ is set on creation.
CreateStream(filter_);
} else {
// Chrome picker is used.
auto content_callback = base::BindPostTask(
device_task_runner_,
base::BindRepeating(
&ScreenCaptureKitDeviceMac::OnShareableContentCreated,
weak_factory_.GetWeakPtr()));
auto handler = ^(SCShareableContent* content, NSError* error) {
content_callback.Run(content);
};
[SCShareableContent getShareableContentWithCompletionHandler:handler];
}
}
void OnStop() override {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (stream_) {
auto stream_stopped_callback = base::BindPostTask(
device_task_runner_,
base::BindRepeating(&ScreenCaptureKitDeviceMac::OnStreamStopped,
weak_factory_.GetWeakPtr()));
auto handler = ^(NSError* error) {
stream_stopped_callback.Run(!!error);
};
[stream_ stopCaptureWithCompletionHandler:handler];
NSError* error = nil;
bool remove_stream_output_result =
[stream_ removeStreamOutput:helper_
type:SCStreamOutputTypeScreen
error:&error];
if (!remove_stream_output_result) {
DLOG(ERROR) << "Failed removeStreamOutput";
}
}
weak_factory_.InvalidateWeakPtrs();
stream_ = nil;
}
// ScreenCaptureKitResetStreamInterface.
void ResetStreamTo(SCWindow* window) override {
DCHECK(device_task_runner_->RunsTasksInCurrentSequence());
if (!window || is_resetting_) {
client()->OnError(
media::VideoCaptureError::kScreenCaptureKitResetStreamError,
FROM_HERE, "Error on ResetStreamTo.");
return;
}
is_resetting_ = true;
SCContentFilter* filter =
[[SCContentFilter alloc] initWithDesktopIndependentWindow:window];
__block base::OnceCallback<void(NSError*)>
on_update_content_filter_completed = base::BindPostTask(
device_task_runner_,
base::BindOnce(
&ScreenCaptureKitDeviceMac::OnUpdateContentFilterCompleted,
weak_factory_.GetWeakPtr()));
[stream_ updateContentFilter:filter
completionHandler:^(NSError* _Nullable error) {
std::move(on_update_content_filter_completed).Run(error);
}];
}
private:
const DesktopMediaID source_;
SCContentFilter* const filter_;
const scoped_refptr<base::SingleThreadTaskRunner> device_task_runner_;
// The actual format of the video frames that are sent to `client`.
media::VideoCaptureFormat actual_capture_format_;
// The requested format if a request to update the configuration has been
// sent.
std::optional<media::VideoCaptureFormat> requested_capture_format_;
// The size of the content at the time that we configured the stream.
gfx::Size stream_config_content_size_;
// Helper class that acts as output and delegate for `stream_`.
ScreenCaptureKitDeviceHelper* __strong helper_;
// This is used to detect when a captured presentation enters fullscreen mode.
// If this happens, the module will call the ResetStreamTo function.
std::unique_ptr<ScreenCaptureKitFullscreenModule> fullscreen_module_;
bool is_resetting_ = false;
// The stream that does the capturing.
SCStream* __strong stream_;
base::WeakPtrFactory<ScreenCaptureKitDeviceMac> weak_factory_{this};
};
} // namespace
// Although ScreenCaptureKit is available in 12.3 there were some bugs that
// were not fixed until 13.2.
API_AVAILABLE(macos(13.2))
std::unique_ptr<media::VideoCaptureDevice> CreateScreenCaptureKitDeviceMac(
const DesktopMediaID& source,
SCContentFilter* filter) {
switch (source.type) {
case DesktopMediaID::TYPE_SCREEN:
// ScreenCaptureKitDeviceMac only supports a single display at a time.
// It will not stitch desktops together. If
// kScreenCaptureKitFullDesktopFallback is enabled, we will fallback to
// capturing the first display in the list returned from
// getShareableContent. https://crbug.com/1178360 and
// https://crbug.com/325530044
if ((source.id == webrtc::kFullDesktopScreenId &&
!base::FeatureList::IsEnabled(
kScreenCaptureKitFullDesktopFallback)) ||
source.id == webrtc::kInvalidScreenId) {
return nullptr;
}
break;
case DesktopMediaID::TYPE_WINDOW:
break;
default:
// ScreenCaptureKitDeviceMac supports only TYPE_SCREEN and TYPE_WINDOW.
// https://crbug.com/1176900
return nullptr;
}
IncrementDesktopCaptureCounter(SCREEN_CAPTURER_CREATED);
IncrementDesktopCaptureCounter(source.audio_share
? SCREEN_CAPTURER_CREATED_WITH_AUDIO
: SCREEN_CAPTURER_CREATED_WITHOUT_AUDIO);
return std::make_unique<ScreenCaptureKitDeviceMac>(source, filter);
}
} // namespace content
|