 aa23198ad8
			
		
	
	
	
	
	aa23198ad8* chore: in shell/renderer/renderer_client_base.h, remove include media/base/key_systems_support_registration.h
last use removed in c670e38b (##41610)
* chore: iwyu electron/fuses.h
* chore: iwyu media/base/video_frame.h
* chore: iwyu base/functional/callback.h
* chore: iwyu base/task/cancelable_task_tracker.h
* chore: iwyu shell/browser/draggable_region_provider.h
* chore: iwyu shell/browser/ui/inspectable_web_contents_view.h
* chore: iwyu ui/aura/window.h
* chore: iwyu ui/base/win/shell.h
* chore: iwyu ui/display/win/screen_win.h
* chore: iwyu ui/gfx/geometry/insets.h
* chore: iwyu ui/display/display.h
* chore: iwyu ui/gfx/geometry/skia_conversions.h
* chore: iwyu ui/gfx/geometry/rect_conversions.h
* chore: iwyu ui/gfx/geometry/point.h
* chore: iwyu ui/gfx/scoped_canvas.h
* chore: iwyu ui/gfx/image/image.h
* chore: iwyu ui/accessibility/ax_node_data.h
* chore: iwyu ui/views/animation/ink_drop_highlight.h
* chore: iwyu ui/gfx/font_list.h
* chore: iwyu ui/linux/nav_button_provider.h
* chore: iwyu shell/browser/ui/views/frameless_view.h
* chore: iwyu services/metrics/public/cpp/ukm_source_id.h
* chore: iwyu net/http/http_util.h
* chore: iwyu net/base/mime_util.h
* chore: iwyu content/public/common/content_client.h
* chore: iwyu <list>
* chore: iwyu <optional>
* chore: iwyu <memory>
* chore: iwyu base/files/file_path.h
* chore: iwyu ui/base/cursor/cursor.h
* chore: iwyu build/build_config.h
* chore: iwyu content/public/browser/web_contents.h
* chore: iwyu shell/browser/hid/hid_chooser_context.h
* chore: iwyu shell/common/platform_util.h
* chore: iwyu base/task/single_thread_task_runner.h
* chore: iwyu content/browser/renderer_host/render_widget_host_impl.h
* chore: iwyu content/public/browser/render_widget_host.h
* chore: iwyu shell/browser/electron_browser_context.h
* chore: iwyu content/public/browser/web_contents_observer.h
* chore: iwyu content/public/browser/render_frame_host.h
* chore: iwyu content/public/browser/media_stream_request.h
* chore: iwyu chrome/common/chrome_paths.h
* chore: iwyu chrome/browser/icon_manager.h
* chore: iwyu printing/print_settings.h
* chore: iwyu renderer/pepper_helper.h
* chore: iwyu shell/browser/api/process_metric.h
* chore: iwyu shell/browser/electron_browser_client.h
* chore: iwyu shell/browser/electron_browser_context.h
* chore: iwyu shell/browser/api/electron_api_session.h
* chore: iwyu shell/browser/api/electron_api_app.h
* chore: iwyu shell/browser/ui/views/client_frame_view_linux.h
* chore: iwyu shell/browser/native_window_views.h
* chore: iwyu base/win/windows_version.h
* chore: iwyu shell/common/electron_paths.h
* chore: iwyu content/public/common/content_switches.h
* chore: iwyu third_party/skia/include/core/SkRRect.h
* chore: iwyu third_party/skia/include/core/SkBitmap.h
* chore: iwyu third_party/skia
* chore: iwyu shell/browser/osr/osr_host_display_client.h
* chore: iwyu shell/browser/login_handler.h
* chore: iwyu shell/browser/javascript_environment.h
* chore: iwyu shell/browser/event_emitter_mixin.h
* fix: mac
* fix: mac
* chore: iwyu base/nix/xdg_util.h
* fix: win
* fix: win
* fix: win
* fix: win
		
	
			
		
			
				
	
	
		
			165 lines
		
	
	
	
		
			5.5 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			165 lines
		
	
	
	
		
			5.5 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2019 GitHub, Inc.
 | |
| // Use of this source code is governed by the MIT license that can be
 | |
| // found in the LICENSE file.
 | |
| 
 | |
| #include "shell/browser/osr/osr_video_consumer.h"
 | |
| 
 | |
| #include <utility>
 | |
| 
 | |
| #include "media/base/limits.h"
 | |
| #include "media/base/video_frame_metadata.h"
 | |
| #include "media/capture/mojom/video_capture_buffer.mojom.h"
 | |
| #include "media/capture/mojom/video_capture_types.mojom.h"
 | |
| #include "services/viz/privileged/mojom/compositing/frame_sink_video_capture.mojom-shared.h"
 | |
| #include "shell/browser/osr/osr_render_widget_host_view.h"
 | |
| #include "third_party/skia/include/core/SkImageInfo.h"
 | |
| #include "third_party/skia/include/core/SkRegion.h"
 | |
| #include "ui/gfx/skbitmap_operations.h"
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| bool IsValidMinAndMaxFrameSize(gfx::Size min_frame_size,
 | |
|                                gfx::Size max_frame_size) {
 | |
|   // Returns true if
 | |
|   // 0 < |min_frame_size| <= |max_frame_size| <= media::limits::kMaxDimension.
 | |
|   return 0 < min_frame_size.width() && 0 < min_frame_size.height() &&
 | |
|          min_frame_size.width() <= max_frame_size.width() &&
 | |
|          min_frame_size.height() <= max_frame_size.height() &&
 | |
|          max_frame_size.width() <= media::limits::kMaxDimension &&
 | |
|          max_frame_size.height() <= media::limits::kMaxDimension;
 | |
| }
 | |
| 
 | |
| }  // namespace
 | |
| 
 | |
| namespace electron {
 | |
| 
 | |
| OffScreenVideoConsumer::OffScreenVideoConsumer(
 | |
|     OffScreenRenderWidgetHostView* view,
 | |
|     OnPaintCallback callback)
 | |
|     : callback_(callback),
 | |
|       view_(view),
 | |
|       video_capturer_(view->CreateVideoCapturer()) {
 | |
|   video_capturer_->SetAutoThrottlingEnabled(false);
 | |
|   video_capturer_->SetMinSizeChangePeriod(base::TimeDelta());
 | |
|   video_capturer_->SetFormat(media::PIXEL_FORMAT_ARGB);
 | |
| 
 | |
|   SizeChanged(view_->SizeInPixels());
 | |
|   SetFrameRate(view_->frame_rate());
 | |
| }
 | |
| 
 | |
| OffScreenVideoConsumer::~OffScreenVideoConsumer() = default;
 | |
| 
 | |
| void OffScreenVideoConsumer::SetActive(bool active) {
 | |
|   if (active) {
 | |
|     video_capturer_->Start(this, viz::mojom::BufferFormatPreference::kDefault);
 | |
|   } else {
 | |
|     video_capturer_->Stop();
 | |
|   }
 | |
| }
 | |
| 
 | |
| void OffScreenVideoConsumer::SetFrameRate(int frame_rate) {
 | |
|   video_capturer_->SetMinCapturePeriod(base::Seconds(1) / frame_rate);
 | |
| }
 | |
| 
 | |
| void OffScreenVideoConsumer::SizeChanged(const gfx::Size& size_in_pixels) {
 | |
|   DCHECK(IsValidMinAndMaxFrameSize(size_in_pixels, size_in_pixels));
 | |
|   video_capturer_->SetResolutionConstraints(size_in_pixels, size_in_pixels,
 | |
|                                             true);
 | |
|   video_capturer_->RequestRefreshFrame();
 | |
| }
 | |
| 
 | |
| void OffScreenVideoConsumer::OnFrameCaptured(
 | |
|     ::media::mojom::VideoBufferHandlePtr data,
 | |
|     ::media::mojom::VideoFrameInfoPtr info,
 | |
|     const gfx::Rect& content_rect,
 | |
|     mojo::PendingRemote<viz::mojom::FrameSinkVideoConsumerFrameCallbacks>
 | |
|         callbacks) {
 | |
|   auto& data_region = data->get_read_only_shmem_region();
 | |
| 
 | |
|   if (!CheckContentRect(content_rect)) {
 | |
|     SizeChanged(view_->SizeInPixels());
 | |
|     return;
 | |
|   }
 | |
| 
 | |
|   mojo::Remote<viz::mojom::FrameSinkVideoConsumerFrameCallbacks>
 | |
|       callbacks_remote(std::move(callbacks));
 | |
| 
 | |
|   if (!data_region.IsValid()) {
 | |
|     callbacks_remote->Done();
 | |
|     return;
 | |
|   }
 | |
|   base::ReadOnlySharedMemoryMapping mapping = data_region.Map();
 | |
|   if (!mapping.IsValid()) {
 | |
|     DLOG(ERROR) << "Shared memory mapping failed.";
 | |
|     callbacks_remote->Done();
 | |
|     return;
 | |
|   }
 | |
|   if (mapping.size() <
 | |
|       media::VideoFrame::AllocationSize(info->pixel_format, info->coded_size)) {
 | |
|     DLOG(ERROR) << "Shared memory size was less than expected.";
 | |
|     callbacks_remote->Done();
 | |
|     return;
 | |
|   }
 | |
| 
 | |
|   // The SkBitmap's pixels will be marked as immutable, but the installPixels()
 | |
|   // API requires a non-const pointer. So, cast away the const.
 | |
|   void* const pixels = const_cast<void*>(mapping.memory());
 | |
| 
 | |
|   // Call installPixels() with a |releaseProc| that: 1) notifies the capturer
 | |
|   // that this consumer has finished with the frame, and 2) releases the shared
 | |
|   // memory mapping.
 | |
|   struct FramePinner {
 | |
|     // Keeps the shared memory that backs |frame_| mapped.
 | |
|     base::ReadOnlySharedMemoryMapping mapping;
 | |
|     // Prevents FrameSinkVideoCapturer from recycling the shared memory that
 | |
|     // backs |frame_|.
 | |
|     mojo::PendingRemote<viz::mojom::FrameSinkVideoConsumerFrameCallbacks>
 | |
|         releaser;
 | |
|   };
 | |
| 
 | |
|   SkBitmap bitmap;
 | |
|   bitmap.installPixels(
 | |
|       SkImageInfo::MakeN32(content_rect.width(), content_rect.height(),
 | |
|                            kPremul_SkAlphaType),
 | |
|       pixels,
 | |
|       media::VideoFrame::RowBytes(media::VideoFrame::Plane::kARGB,
 | |
|                                   info->pixel_format, info->coded_size.width()),
 | |
|       [](void* addr, void* context) {
 | |
|         delete static_cast<FramePinner*>(context);
 | |
|       },
 | |
|       new FramePinner{std::move(mapping), callbacks_remote.Unbind()});
 | |
|   bitmap.setImmutable();
 | |
| 
 | |
|   std::optional<gfx::Rect> update_rect = info->metadata.capture_update_rect;
 | |
|   if (!update_rect.has_value() || update_rect->IsEmpty()) {
 | |
|     update_rect = content_rect;
 | |
|   }
 | |
| 
 | |
|   callback_.Run(*update_rect, bitmap);
 | |
| }
 | |
| 
 | |
| void OffScreenVideoConsumer::OnNewSubCaptureTargetVersion(
 | |
|     uint32_t crop_version) {}
 | |
| 
 | |
| void OffScreenVideoConsumer::OnFrameWithEmptyRegionCapture() {}
 | |
| 
 | |
| void OffScreenVideoConsumer::OnStopped() {}
 | |
| 
 | |
| void OffScreenVideoConsumer::OnLog(const std::string& message) {}
 | |
| 
 | |
| bool OffScreenVideoConsumer::CheckContentRect(const gfx::Rect& content_rect) {
 | |
|   gfx::Size view_size = view_->SizeInPixels();
 | |
|   gfx::Size content_size = content_rect.size();
 | |
| 
 | |
|   if (std::abs(view_size.width() - content_size.width()) > 2) {
 | |
|     return false;
 | |
|   }
 | |
| 
 | |
|   if (std::abs(view_size.height() - content_size.height()) > 2) {
 | |
|     return false;
 | |
|   }
 | |
| 
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| }  // namespace electron
 |