1a3471
diff --git a/config/system-headers.mozbuild b/config/system-headers.mozbuild
1a3471
index 2081d0c683a4..641133bf1ea4 100644
1a3471
--- a/config/system-headers.mozbuild
1a3471
+++ b/config/system-headers.mozbuild
1a3471
@@ -314,6 +314,7 @@ system_headers = [
1a3471
     'Gestalt.h',
1a3471
     'getopt.h',
1a3471
     'gio/gio.h',
1a3471
+    'gio/gunixfdlist.h',
1a3471
     'glibconfig.h',
1a3471
     'glib.h',
1a3471
     'glib-object.h',
1a3471
@@ -607,6 +608,7 @@ system_headers = [
1a3471
     'Pgenerr.h',
1a3471
     'PGenErr.h',
1a3471
     'Ph.h',
1a3471
+    'pipewire/pipewire.h',
1a3471
     'pixman.h',
1a3471
     'pk11func.h',
1a3471
     'pk11pqg.h',
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/BUILD.gn b/media/webrtc/trunk/webrtc/modules/desktop_capture/BUILD.gn
1a3471
index ba885217b3ba..201d3b755221 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/BUILD.gn
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/BUILD.gn
1a3471
@@ -158,7 +158,7 @@ if (rtc_include_tests) {
1a3471
 if (is_linux) {
1a3471
   if (rtc_use_pipewire) {
1a3471
     pkg_config("pipewire") {
1a3471
-      packages = [ "libpipewire-0.2" ]
1a3471
+      packages = [ "libpipewire-0.3" ]
1a3471
 
1a3471
       defines = [ "WEBRTC_USE_PIPEWIRE" ]
1a3471
     }
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build b/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
1a3471
index 90b40431c7e4..d844aa79d591 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_generic_gn/moz.build
1a3471
@@ -194,6 +194,30 @@ if CONFIG["OS_TARGET"] == "Linux":
1a3471
         "/media/webrtc/trunk/webrtc/modules/desktop_capture/window_capturer_linux.cc"
1a3471
     ]
1a3471
 
1a3471
+# PipeWire specific files
1a3471
+if CONFIG["OS_TARGET"] == "Linux":
1a3471
+
1a3471
+    DEFINES["WEBRTC_USE_PIPEWIRE"] = "1"
1a3471
+
1a3471
+    OS_LIBS += [
1a3471
+        "rt",
1a3471
+        "pipewire-0.3",
1a3471
+        "glib-2.0",
1a3471
+        "gio-2.0",
1a3471
+        "gobject-2.0"
1a3471
+    ]
1a3471
+
1a3471
+    CXXFLAGS += CONFIG['TK_CFLAGS']
1a3471
+    CXXFLAGS += [ "-I/usr/include/pipewire-0.3" ]
1a3471
+    CXXFLAGS += [ "-I/usr/include/spa-0.2" ]
1a3471
+
1a3471
+    UNIFIED_SOURCES += [
1a3471
+        "/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc",
1a3471
+        "/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc",
1a3471
+        "/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc"
1a3471
+    ]
1a3471
+
1a3471
+
1a3471
 if CONFIG["OS_TARGET"] == "NetBSD":
1a3471
 
1a3471
     DEFINES["USE_X11"] = "1"
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_options.h b/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_options.h
1a3471
index 1eb8ead26efa..316468eed1fc 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_options.h
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_options.h
1a3471
@@ -141,7 +141,7 @@ class DesktopCaptureOptions {
1a3471
   bool disable_effects_ = true;
1a3471
   bool detect_updated_region_ = false;
1a3471
 #if defined(WEBRTC_USE_PIPEWIRE)
1a3471
-  bool allow_pipewire_ = false;
1a3471
+  bool allow_pipewire_ = true;
1a3471
 #endif
1a3471
 };
1a3471
 
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
1a3471
index 379341c833de..76349f1fbd4d 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.cc
1a3471
@@ -15,8 +15,11 @@
1a3471
 
1a3471
 #include <spa/param/format-utils.h>
1a3471
 #include <spa/param/props.h>
1a3471
-#include <spa/param/video/raw-utils.h>
1a3471
-#include <spa/support/type-map.h>
1a3471
+
1a3471
+#include <linux/dma-buf.h>
1a3471
+#include <sys/mman.h>
1a3471
+#include <sys/ioctl.h>
1a3471
+#include <sys/syscall.h>
1a3471
 
1a3471
 #include <memory>
1a3471
 #include <utility>
1a3471
@@ -36,31 +39,36 @@ const char kSessionInterfaceName[] = "org.freedesktop.portal.Session";
1a3471
 const char kRequestInterfaceName[] = "org.freedesktop.portal.Request";
1a3471
 const char kScreenCastInterfaceName[] = "org.freedesktop.portal.ScreenCast";
1a3471
 
1a3471
-// static
1a3471
-void BaseCapturerPipeWire::OnStateChanged(void* data,
1a3471
-                                          pw_remote_state old_state,
1a3471
-                                          pw_remote_state state,
1a3471
-                                          const char* error_message) {
1a3471
-  BaseCapturerPipeWire* that = static_cast<BaseCapturerPipeWire*>(data);
1a3471
-  RTC_DCHECK(that);
1a3471
 
1a3471
-  switch (state) {
1a3471
-    case PW_REMOTE_STATE_ERROR:
1a3471
-      RTC_LOG(LS_ERROR) << "PipeWire remote state error: " << error_message;
1a3471
-      break;
1a3471
-    case PW_REMOTE_STATE_CONNECTED:
1a3471
-      RTC_LOG(LS_INFO) << "PipeWire remote state: connected.";
1a3471
-      that->CreateReceivingStream();
1a3471
-      break;
1a3471
-    case PW_REMOTE_STATE_CONNECTING:
1a3471
-      RTC_LOG(LS_INFO) << "PipeWire remote state: connecting.";
1a3471
+// static
1a3471
+void BaseCapturerPipeWire::SyncDmaBuf(int fd, uint64_t start_or_end) {
1a3471
+  struct dma_buf_sync sync = { 0 };
1a3471
+
1a3471
+  sync.flags = start_or_end | DMA_BUF_SYNC_READ;
1a3471
+
1a3471
+  while(true) {
1a3471
+    int ret;
1a3471
+    ret = ioctl (fd, DMA_BUF_IOCTL_SYNC, &sync);
1a3471
+    if (ret == -1 && errno == EINTR) {
1a3471
+      continue;
1a3471
+    } else if (ret == -1) {
1a3471
+      RTC_LOG(LS_ERROR) << "Failed to synchronize DMA buffer: " << g_strerror(errno);
1a3471
       break;
1a3471
-    case PW_REMOTE_STATE_UNCONNECTED:
1a3471
-      RTC_LOG(LS_INFO) << "PipeWire remote state: unconnected.";
1a3471
+    } else {
1a3471
       break;
1a3471
+    }
1a3471
   }
1a3471
 }
1a3471
 
1a3471
+// static
1a3471
+void BaseCapturerPipeWire::OnCoreError(void *data,
1a3471
+                                       uint32_t id,
1a3471
+                                       int seq,
1a3471
+                                       int res,
1a3471
+                                       const char *message) {
1a3471
+  RTC_LOG(LS_ERROR) << "core error: " << message;
1a3471
+}
1a3471
+
1a3471
 // static
1a3471
 void BaseCapturerPipeWire::OnStreamStateChanged(void* data,
1a3471
                                                 pw_stream_state old_state,
1a3471
@@ -73,76 +81,54 @@ void BaseCapturerPipeWire::OnStreamStateChanged(void* data,
1a3471
     case PW_STREAM_STATE_ERROR:
1a3471
       RTC_LOG(LS_ERROR) << "PipeWire stream state error: " << error_message;
1a3471
       break;
1a3471
-    case PW_STREAM_STATE_CONFIGURE:
1a3471
-      pw_stream_set_active(that->pw_stream_, true);
1a3471
-      break;
1a3471
-    case PW_STREAM_STATE_UNCONNECTED:
1a3471
-    case PW_STREAM_STATE_CONNECTING:
1a3471
-    case PW_STREAM_STATE_READY:
1a3471
     case PW_STREAM_STATE_PAUSED:
1a3471
     case PW_STREAM_STATE_STREAMING:
1a3471
+    case PW_STREAM_STATE_UNCONNECTED:
1a3471
+    case PW_STREAM_STATE_CONNECTING:
1a3471
       break;
1a3471
   }
1a3471
 }
1a3471
 
1a3471
 // static
1a3471
-void BaseCapturerPipeWire::OnStreamFormatChanged(void* data,
1a3471
-                                                 const struct spa_pod* format) {
1a3471
+void BaseCapturerPipeWire::OnStreamParamChanged(void *data, uint32_t id,
1a3471
+                                                const struct spa_pod *format) {
1a3471
   BaseCapturerPipeWire* that = static_cast<BaseCapturerPipeWire*>(data);
1a3471
   RTC_DCHECK(that);
1a3471
 
1a3471
-  RTC_LOG(LS_INFO) << "PipeWire stream format changed.";
1a3471
+  RTC_LOG(LS_INFO) << "PipeWire stream param changed.";
1a3471
 
1a3471
-  if (!format) {
1a3471
-    pw_stream_finish_format(that->pw_stream_, /*res=*/0, /*params=*/nullptr,
1a3471
-                            /*n_params=*/0);
1a3471
+  if (!format || id != SPA_PARAM_Format) {
1a3471
     return;
1a3471
   }
1a3471
 
1a3471
-  that->spa_video_format_ = new spa_video_info_raw();
1a3471
-  spa_format_video_raw_parse(format, that->spa_video_format_,
1a3471
-                             &that->pw_type_->format_video);
1a3471
+  spa_format_video_raw_parse(format, &that->spa_video_format_);
1a3471
 
1a3471
-  auto width = that->spa_video_format_->size.width;
1a3471
-  auto height = that->spa_video_format_->size.height;
1a3471
+  auto width = that->spa_video_format_.size.width;
1a3471
+  auto height = that->spa_video_format_.size.height;
1a3471
   auto stride = SPA_ROUND_UP_N(width * kBytesPerPixel, 4);
1a3471
   auto size = height * stride;
1a3471
 
1a3471
+  that->desktop_size_ = DesktopSize(width, height);
1a3471
+
1a3471
   uint8_t buffer[1024] = {};
1a3471
   auto builder = spa_pod_builder{buffer, sizeof(buffer)};
1a3471
 
1a3471
   // Setup buffers and meta header for new format.
1a3471
-  const struct spa_pod* params[2];
1a3471
-  params[0] = reinterpret_cast<spa_pod*>(spa_pod_builder_object(
1a3471
-      &builder,
1a3471
-      // id to enumerate buffer requirements
1a3471
-      that->pw_core_type_->param.idBuffers,
1a3471
-      that->pw_core_type_->param_buffers.Buffers,
1a3471
-      // Size: specified as integer (i) and set to specified size
1a3471
-      ":", that->pw_core_type_->param_buffers.size, "i", size,
1a3471
-      // Stride: specified as integer (i) and set to specified stride
1a3471
-      ":", that->pw_core_type_->param_buffers.stride, "i", stride,
1a3471
-      // Buffers: specifies how many buffers we want to deal with, set as
1a3471
-      // integer (i) where preferred number is 8, then allowed number is defined
1a3471
-      // as range (r) from min and max values and it is undecided (u) to allow
1a3471
-      // negotiation
1a3471
-      ":", that->pw_core_type_->param_buffers.buffers, "iru", 8,
1a3471
-      SPA_POD_PROP_MIN_MAX(1, 32),
1a3471
-      // Align: memory alignment of the buffer, set as integer (i) to specified
1a3471
-      // value
1a3471
-      ":", that->pw_core_type_->param_buffers.align, "i", 16));
1a3471
-  params[1] = reinterpret_cast<spa_pod*>(spa_pod_builder_object(
1a3471
-      &builder,
1a3471
-      // id to enumerate supported metadata
1a3471
-      that->pw_core_type_->param.idMeta, that->pw_core_type_->param_meta.Meta,
1a3471
-      // Type: specified as id or enum (I)
1a3471
-      ":", that->pw_core_type_->param_meta.type, "I",
1a3471
-      that->pw_core_type_->meta.Header,
1a3471
-      // Size: size of the metadata, specified as integer (i)
1a3471
-      ":", that->pw_core_type_->param_meta.size, "i",
1a3471
-      sizeof(struct spa_meta_header)));
1a3471
-
1a3471
-  pw_stream_finish_format(that->pw_stream_, /*res=*/0, params, /*n_params=*/2);
1a3471
+  const struct spa_pod* params[3];
1a3471
+  params[0] = reinterpret_cast<spa_pod *>(spa_pod_builder_add_object(&builder,
1a3471
+              SPA_TYPE_OBJECT_ParamBuffers, SPA_PARAM_Buffers,
1a3471
+              SPA_PARAM_BUFFERS_size, SPA_POD_Int(size),
1a3471
+              SPA_PARAM_BUFFERS_stride, SPA_POD_Int(stride),
1a3471
+              SPA_PARAM_BUFFERS_buffers, SPA_POD_CHOICE_RANGE_Int(8, 1, 32)));
1a3471
+  params[1] = reinterpret_cast<spa_pod *>(spa_pod_builder_add_object(&builder,
1a3471
+              SPA_TYPE_OBJECT_ParamMeta, SPA_PARAM_Meta,
1a3471
+              SPA_PARAM_META_type, SPA_POD_Id(SPA_META_Header),
1a3471
+              SPA_PARAM_META_size, SPA_POD_Int(sizeof(struct spa_meta_header))));
1a3471
+  params[2] = reinterpret_cast<spa_pod *>(spa_pod_builder_add_object(&builder,
1a3471
+              SPA_TYPE_OBJECT_ParamMeta, SPA_PARAM_Meta,
1a3471
+              SPA_PARAM_META_type, SPA_POD_Id (SPA_META_VideoCrop),
1a3471
+              SPA_PARAM_META_size, SPA_POD_Int (sizeof(struct spa_meta_region))));
1a3471
+  pw_stream_update_params(that->pw_stream_, params, 3);
1a3471
 }
1a3471
 
1a3471
 // static
1a3471
@@ -150,15 +136,25 @@ void BaseCapturerPipeWire::OnStreamProcess(void* data) {
1a3471
   BaseCapturerPipeWire* that = static_cast<BaseCapturerPipeWire*>(data);
1a3471
   RTC_DCHECK(that);
1a3471
 
1a3471
-  pw_buffer* buf = nullptr;
1a3471
+  struct pw_buffer *next_buffer;
1a3471
+  struct pw_buffer *buffer = nullptr;
1a3471
+
1a3471
+  next_buffer = pw_stream_dequeue_buffer(that->pw_stream_);
1a3471
+  while (next_buffer) {
1a3471
+    buffer = next_buffer;
1a3471
+    next_buffer = pw_stream_dequeue_buffer(that->pw_stream_);
1a3471
 
1a3471
-  if (!(buf = pw_stream_dequeue_buffer(that->pw_stream_))) {
1a3471
+    if (next_buffer)
1a3471
+      pw_stream_queue_buffer (that->pw_stream_, buffer);
1a3471
+  }
1a3471
+
1a3471
+  if (!buffer) {
1a3471
     return;
1a3471
   }
1a3471
 
1a3471
-  that->HandleBuffer(buf);
1a3471
+  that->HandleBuffer(buffer);
1a3471
 
1a3471
-  pw_stream_queue_buffer(that->pw_stream_, buf);
1a3471
+  pw_stream_queue_buffer(that->pw_stream_, buffer);
1a3471
 }
1a3471
 
1a3471
 BaseCapturerPipeWire::BaseCapturerPipeWire(CaptureSourceType source_type)
1a3471
@@ -169,38 +165,22 @@ BaseCapturerPipeWire::~BaseCapturerPipeWire() {
1a3471
     pw_thread_loop_stop(pw_main_loop_);
1a3471
   }
1a3471
 
1a3471
-  if (pw_type_) {
1a3471
-    delete pw_type_;
1a3471
-  }
1a3471
-
1a3471
-  if (spa_video_format_) {
1a3471
-    delete spa_video_format_;
1a3471
-  }
1a3471
-
1a3471
   if (pw_stream_) {
1a3471
     pw_stream_destroy(pw_stream_);
1a3471
   }
1a3471
 
1a3471
-  if (pw_remote_) {
1a3471
-    pw_remote_destroy(pw_remote_);
1a3471
+  if (pw_core_) {
1a3471
+    pw_core_disconnect(pw_core_);
1a3471
   }
1a3471
 
1a3471
-  if (pw_core_) {
1a3471
-    pw_core_destroy(pw_core_);
1a3471
+  if (pw_context_) {
1a3471
+    pw_context_destroy(pw_context_);
1a3471
   }
1a3471
 
1a3471
   if (pw_main_loop_) {
1a3471
     pw_thread_loop_destroy(pw_main_loop_);
1a3471
   }
1a3471
 
1a3471
-  if (pw_loop_) {
1a3471
-    pw_loop_destroy(pw_loop_);
1a3471
-  }
1a3471
-
1a3471
-  if (current_frame_) {
1a3471
-    free(current_frame_);
1a3471
-  }
1a3471
-
1a3471
   if (start_request_signal_id_) {
1a3471
     g_dbus_connection_signal_unsubscribe(connection_, start_request_signal_id_);
1a3471
   }
1a3471
@@ -250,27 +230,35 @@ void BaseCapturerPipeWire::InitPortal() {
1a3471
 void BaseCapturerPipeWire::InitPipeWire() {
1a3471
   pw_init(/*argc=*/nullptr, /*argc=*/nullptr);
1a3471
 
1a3471
-  pw_loop_ = pw_loop_new(/*properties=*/nullptr);
1a3471
-  pw_main_loop_ = pw_thread_loop_new(pw_loop_, "pipewire-main-loop");
1a3471
-
1a3471
-  pw_core_ = pw_core_new(pw_loop_, /*properties=*/nullptr);
1a3471
-  pw_core_type_ = pw_core_get_type(pw_core_);
1a3471
-  pw_remote_ = pw_remote_new(pw_core_, nullptr, /*user_data_size=*/0);
1a3471
+  pw_main_loop_ = pw_thread_loop_new("pipewire-main-loop", nullptr);
1a3471
+  pw_context_ = pw_context_new(pw_thread_loop_get_loop(pw_main_loop_), nullptr, 0);
1a3471
+  if (!pw_context_) {
1a3471
+    RTC_LOG(LS_ERROR) << "Failed to create PipeWire context";
1a3471
+    return;
1a3471
+  }
1a3471
 
1a3471
-  InitPipeWireTypes();
1a3471
+  pw_core_ = pw_context_connect(pw_context_, nullptr, 0);
1a3471
+  if (!pw_core_) {
1a3471
+    RTC_LOG(LS_ERROR) << "Failed to connect PipeWire context";
1a3471
+    return;
1a3471
+  }
1a3471
 
1a3471
   // Initialize event handlers, remote end and stream-related.
1a3471
-  pw_remote_events_.version = PW_VERSION_REMOTE_EVENTS;
1a3471
-  pw_remote_events_.state_changed = &OnStateChanged;
1a3471
+  pw_core_events_.version = PW_VERSION_CORE_EVENTS;
1a3471
+  pw_core_events_.error = &OnCoreError;
1a3471
 
1a3471
   pw_stream_events_.version = PW_VERSION_STREAM_EVENTS;
1a3471
   pw_stream_events_.state_changed = &OnStreamStateChanged;
1a3471
-  pw_stream_events_.format_changed = &OnStreamFormatChanged;
1a3471
+  pw_stream_events_.param_changed = &OnStreamParamChanged;
1a3471
   pw_stream_events_.process = &OnStreamProcess;
1a3471
 
1a3471
-  pw_remote_add_listener(pw_remote_, &spa_remote_listener_, &pw_remote_events_,
1a3471
-                         this);
1a3471
-  pw_remote_connect_fd(pw_remote_, pw_fd_);
1a3471
+  pw_core_add_listener(pw_core_, &spa_core_listener_, &pw_core_events_, this);
1a3471
+
1a3471
+  pw_stream_ = CreateReceivingStream();
1a3471
+  if (!pw_stream_) {
1a3471
+    RTC_LOG(LS_ERROR) << "Failed to create PipeWire stream";
1a3471
+    return;
1a3471
+  }
1a3471
 
1a3471
   if (pw_thread_loop_start(pw_main_loop_) < 0) {
1a3471
     RTC_LOG(LS_ERROR) << "Failed to start main PipeWire loop";
1a3471
@@ -278,81 +266,132 @@ void BaseCapturerPipeWire::InitPipeWire() {
1a3471
   }
1a3471
 }
1a3471
 
1a3471
-void BaseCapturerPipeWire::InitPipeWireTypes() {
1a3471
-  spa_type_map* map = pw_core_type_->map;
1a3471
-  pw_type_ = new PipeWireType();
1a3471
-
1a3471
-  spa_type_media_type_map(map, &pw_type_->media_type);
1a3471
-  spa_type_media_subtype_map(map, &pw_type_->media_subtype);
1a3471
-  spa_type_format_video_map(map, &pw_type_->format_video);
1a3471
-  spa_type_video_format_map(map, &pw_type_->video_format);
1a3471
-}
1a3471
-
1a3471
-void BaseCapturerPipeWire::CreateReceivingStream() {
1a3471
+pw_stream* BaseCapturerPipeWire::CreateReceivingStream() {
1a3471
   spa_rectangle pwMinScreenBounds = spa_rectangle{1, 1};
1a3471
-  spa_rectangle pwScreenBounds =
1a3471
-      spa_rectangle{static_cast<uint32_t>(desktop_size_.width()),
1a3471
-                    static_cast<uint32_t>(desktop_size_.height())};
1a3471
+  spa_rectangle pwMaxScreenBounds = spa_rectangle{INT32_MAX, INT32_MAX};
1a3471
 
1a3471
-  spa_fraction pwFrameRateMin = spa_fraction{0, 1};
1a3471
-  spa_fraction pwFrameRateMax = spa_fraction{60, 1};
1a3471
+  auto stream = pw_stream_new(pw_core_, "webrtc-pipewire-stream", nullptr);
1a3471
 
1a3471
-  pw_properties* reuseProps = pw_properties_new("pipewire.client.reuse", "1",
1a3471
-                                                /*end of varargs*/ nullptr);
1a3471
-  pw_stream_ = pw_stream_new(pw_remote_, "webrtc-consume-stream", reuseProps);
1a3471
+  if (!stream) {
1a3471
+    RTC_LOG(LS_ERROR) << "Could not create receiving stream.";
1a3471
+    return nullptr;
1a3471
+  }
1a3471
 
1a3471
   uint8_t buffer[1024] = {};
1a3471
-  const spa_pod* params[1];
1a3471
-  spa_pod_builder builder = spa_pod_builder{buffer, sizeof(buffer)};
1a3471
-  params[0] = reinterpret_cast<spa_pod*>(spa_pod_builder_object(
1a3471
-      &builder,
1a3471
-      // id to enumerate formats
1a3471
-      pw_core_type_->param.idEnumFormat, pw_core_type_->spa_format, "I",
1a3471
-      pw_type_->media_type.video, "I", pw_type_->media_subtype.raw,
1a3471
-      // Video format: specified as id or enum (I), preferred format is BGRx,
1a3471
-      // then allowed formats are enumerated (e) and the format is undecided (u)
1a3471
-      // to allow negotiation
1a3471
-      ":", pw_type_->format_video.format, "Ieu", pw_type_->video_format.BGRx,
1a3471
-      SPA_POD_PROP_ENUM(2, pw_type_->video_format.RGBx,
1a3471
-                        pw_type_->video_format.BGRx),
1a3471
-      // Video size: specified as rectangle (R), preferred size is specified as
1a3471
-      // first parameter, then allowed size is defined as range (r) from min and
1a3471
-      // max values and the format is undecided (u) to allow negotiation
1a3471
-      ":", pw_type_->format_video.size, "Rru", &pwScreenBounds, 2,
1a3471
-      &pwMinScreenBounds, &pwScreenBounds,
1a3471
-      // Frame rate: specified as fraction (F) and set to minimum frame rate
1a3471
-      // value
1a3471
-      ":", pw_type_->format_video.framerate, "F", &pwFrameRateMin,
1a3471
-      // Max frame rate: specified as fraction (F), preferred frame rate is set
1a3471
-      // to maximum value, then allowed frame rate is defined as range (r) from
1a3471
-      // min and max values and it is undecided (u) to allow negotiation
1a3471
-      ":", pw_type_->format_video.max_framerate, "Fru", &pwFrameRateMax, 2,
1a3471
-      &pwFrameRateMin, &pwFrameRateMax));
1a3471
-
1a3471
-  pw_stream_add_listener(pw_stream_, &spa_stream_listener_, &pw_stream_events_,
1a3471
-                         this);
1a3471
+  const spa_pod* params[2];
1a3471
+  spa_pod_builder builder = SPA_POD_BUILDER_INIT(buffer, sizeof (buffer));
1a3471
+
1a3471
+  params[0] = reinterpret_cast<spa_pod *>(spa_pod_builder_add_object(&builder,
1a3471
+              SPA_TYPE_OBJECT_Format, SPA_PARAM_EnumFormat,
1a3471
+              SPA_FORMAT_mediaType, SPA_POD_Id(SPA_MEDIA_TYPE_video),
1a3471
+              SPA_FORMAT_mediaSubtype, SPA_POD_Id(SPA_MEDIA_SUBTYPE_raw),
1a3471
+              SPA_FORMAT_VIDEO_format, SPA_POD_CHOICE_ENUM_Id(5, SPA_VIDEO_FORMAT_BGRx, SPA_VIDEO_FORMAT_RGBx, SPA_VIDEO_FORMAT_RGBA,
1a3471
+                                                                 SPA_VIDEO_FORMAT_BGRx, SPA_VIDEO_FORMAT_BGRA),
1a3471
+              SPA_FORMAT_VIDEO_size, SPA_POD_CHOICE_RANGE_Rectangle(&pwMinScreenBounds,
1a3471
+                                                                    &pwMinScreenBounds,
1a3471
+                                                                    &pwMaxScreenBounds),
1a3471
+              0));
1a3471
+  pw_stream_add_listener(stream, &spa_stream_listener_, &pw_stream_events_, this);
1a3471
+
1a3471
   pw_stream_flags flags = static_cast<pw_stream_flags>(
1a3471
-      PW_STREAM_FLAG_AUTOCONNECT | PW_STREAM_FLAG_INACTIVE |
1a3471
-      PW_STREAM_FLAG_MAP_BUFFERS);
1a3471
-  if (pw_stream_connect(pw_stream_, PW_DIRECTION_INPUT, /*port_path=*/nullptr,
1a3471
-                        flags, params,
1a3471
-                        /*n_params=*/1) != 0) {
1a3471
+      PW_STREAM_FLAG_AUTOCONNECT | PW_STREAM_FLAG_INACTIVE);
1a3471
+
1a3471
+  if (pw_stream_connect(stream, PW_DIRECTION_INPUT, pw_stream_node_id_, PW_STREAM_FLAG_AUTOCONNECT, params, 1) != 0) {
1a3471
     RTC_LOG(LS_ERROR) << "Could not connect receiving stream.";
1a3471
     portal_init_failed_ = true;
1a3471
-    return;
1a3471
   }
1a3471
+
1a3471
+  return stream;
1a3471
 }
1a3471
 
1a3471
 void BaseCapturerPipeWire::HandleBuffer(pw_buffer* buffer) {
1a3471
+  struct spa_meta_region* video_crop;
1a3471
   spa_buffer* spaBuffer = buffer->buffer;
1a3471
-  void* src = nullptr;
1a3471
+  uint8_t *map = nullptr;
1a3471
+  uint8_t* src = nullptr;
1a3471
+  uint8_t* dst = nullptr;
1a3471
+
1a3471
+  if (spaBuffer->datas[0].chunk->size == 0) {
1a3471
+    map = nullptr;
1a3471
+    src = nullptr;
1a3471
+  } else if (spaBuffer->datas[0].type == SPA_DATA_MemFd) {
1a3471
+    map = static_cast<uint8_t*>(mmap(
1a3471
+        nullptr, spaBuffer->datas[0].maxsize + spaBuffer->datas[0].mapoffset,
1a3471
+        PROT_READ, MAP_PRIVATE, spaBuffer->datas[0].fd, 0));
1a3471
+
1a3471
+    if (map == MAP_FAILED) {
1a3471
+      RTC_LOG(LS_ERROR) << "Failed to mmap the memory: " << std::strerror(errno);
1a3471
+      return;
1a3471
+    }
1a3471
+
1a3471
+    src = SPA_MEMBER(map, spaBuffer->datas[0].mapoffset, uint8_t);
1a3471
+  } else if (spaBuffer->datas[0].type == SPA_DATA_DmaBuf) {
1a3471
+    int fd;
1a3471
+    fd = spaBuffer->datas[0].fd;
1a3471
 
1a3471
-  if (!(src = spaBuffer->datas[0].data)) {
1a3471
+    map = static_cast<uint8_t*>(mmap(
1a3471
+        nullptr, spaBuffer->datas[0].maxsize + spaBuffer->datas[0].mapoffset,
1a3471
+        PROT_READ, MAP_PRIVATE, fd, 0));
1a3471
+
1a3471
+    if (map == MAP_FAILED) {
1a3471
+      RTC_LOG(LS_ERROR) << "Failed to mmap the memory: " << std::strerror(errno);
1a3471
+      return;
1a3471
+    }
1a3471
+
1a3471
+    SyncDmaBuf(fd, DMA_BUF_SYNC_START);
1a3471
+
1a3471
+    src = SPA_MEMBER(map, spaBuffer->datas[0].mapoffset, uint8_t);
1a3471
+  } else if (spaBuffer->datas[0].type == SPA_DATA_MemPtr) {
1a3471
+    map = nullptr;
1a3471
+    src = static_cast<uint8_t*>(spaBuffer->datas[0].data);
1a3471
+  } else {
1a3471
     return;
1a3471
   }
1a3471
 
1a3471
-  uint32_t maxSize = spaBuffer->datas[0].maxsize;
1a3471
-  int32_t srcStride = spaBuffer->datas[0].chunk->stride;
1a3471
+  if (!src) {
1a3471
+    return;
1a3471
+  }
1a3471
+
1a3471
+  DesktopSize prev_crop_size = DesktopSize(0, 0);
1a3471
+  if (video_crop_size_initialized_) {
1a3471
+    prev_crop_size = video_crop_size_;
1a3471
+  }  
1a3471
+
1a3471
+  if ((video_crop = static_cast<struct spa_meta_region*>(
1a3471
+           spa_buffer_find_meta_data(spaBuffer, SPA_META_VideoCrop, sizeof(*video_crop))))) {
1a3471
+    RTC_DCHECK(video_crop->region.size.width <= desktop_size_.width() &&
1a3471
+               video_crop->region.size.height <= desktop_size_.height());
1a3471
+    if ((video_crop->region.size.width != desktop_size_.width() ||
1a3471
+        video_crop->region.size.height != desktop_size_.height()) && video_crop->region.size.width && video_crop->region.size.height) {
1a3471
+      video_crop_size_ = DesktopSize(video_crop->region.size.width, video_crop->region.size.height);
1a3471
+      video_crop_size_initialized_ = true;
1a3471
+    } else {
1a3471
+      video_crop_size_initialized_ = false;
1a3471
+    }
1a3471
+  } else {
1a3471
+    video_crop_size_initialized_ = false;
1a3471
+  }
1a3471
+
1a3471
+  size_t frame_size;
1a3471
+  if (video_crop_size_initialized_) {
1a3471
+    frame_size =
1a3471
+        video_crop_size_.width() * video_crop_size_.height() * kBytesPerPixel;
1a3471
+  } else {
1a3471
+    frame_size =
1a3471
+        desktop_size_.width() * desktop_size_.height() * kBytesPerPixel;
1a3471
+  }
1a3471
+
1a3471
+  if (!current_frame_ ||
1a3471
+      (video_crop_size_initialized_ && !video_crop_size_.equals(prev_crop_size))) {
1a3471
+    current_frame_ = std::make_unique<uint8_t[]>(frame_size);
1a3471
+  }
1a3471
+  RTC_DCHECK(current_frame_ != nullptr);
1a3471
+
1a3471
+  const int32_t dstStride = video_crop_size_initialized_
1a3471
+                                ? video_crop_size_.width() * kBytesPerPixel
1a3471
+                                : desktop_size_.width() * kBytesPerPixel;
1a3471
+  const int32_t srcStride = spaBuffer->datas[0].chunk->stride;
1a3471
+
1a3471
   if (srcStride != (desktop_size_.width() * kBytesPerPixel)) {
1a3471
     RTC_LOG(LS_ERROR) << "Got buffer with stride different from screen stride: "
1a3471
                       << srcStride
1a3471
@@ -361,21 +400,40 @@ void BaseCapturerPipeWire::HandleBuffer(pw_buffer* buffer) {
1a3471
     return;
1a3471
   }
1a3471
 
1a3471
-  if (!current_frame_) {
1a3471
-    current_frame_ = static_cast<uint8_t*>(malloc(maxSize));
1a3471
+  dst = current_frame_.get();
1a3471
+
1a3471
+  // Adjust source content based on crop video position
1a3471
+  if (video_crop_size_initialized_ &&
1a3471
+      (video_crop->region.position.y + video_crop_size_.height() <= desktop_size_.height())) {
1a3471
+    for (int i = 0; i < video_crop->region.position.y; ++i) {
1a3471
+      src += srcStride;
1a3471
+    }
1a3471
+  }
1a3471
+  const int xOffset =
1a3471
+      video_crop_size_initialized_ && (video_crop->region.position.x + video_crop_size_.width() <=
1a3471
+                           desktop_size_.width())
1a3471
+          ? video_crop->region.position.x * kBytesPerPixel
1a3471
+          : 0;
1a3471
+  const int height = video_crop_size_initialized_ ? video_crop_size_.height() : desktop_size_.height();
1a3471
+  for (int i = 0; i < height; ++i) {
1a3471
+    // Adjust source content based on crop video position if needed
1a3471
+    src += xOffset;
1a3471
+    std::memcpy(dst, src, dstStride);
1a3471
+    // If both sides decided to go with the RGBx format we need to convert it to
1a3471
+    // BGRx to match color format expected by WebRTC.
1a3471
+    if (spa_video_format_.format == SPA_VIDEO_FORMAT_RGBx ||
1a3471
+        spa_video_format_.format == SPA_VIDEO_FORMAT_RGBA) {
1a3471
+      ConvertRGBxToBGRx(dst, dstStride);
1a3471
+    }
1a3471
+    src += srcStride - xOffset;
1a3471
+    dst += dstStride;
1a3471
   }
1a3471
-  RTC_DCHECK(current_frame_ != nullptr);
1a3471
 
1a3471
-  // If both sides decided to go with the RGBx format we need to convert it to
1a3471
-  // BGRx to match color format expected by WebRTC.
1a3471
-  if (spa_video_format_->format == pw_type_->video_format.RGBx) {
1a3471
-    uint8_t* tempFrame = static_cast<uint8_t*>(malloc(maxSize));
1a3471
-    std::memcpy(tempFrame, src, maxSize);
1a3471
-    ConvertRGBxToBGRx(tempFrame, maxSize);
1a3471
-    std::memcpy(current_frame_, tempFrame, maxSize);
1a3471
-    free(tempFrame);
1a3471
-  } else {
1a3471
-    std::memcpy(current_frame_, src, maxSize);
1a3471
+  if (map) {
1a3471
+    if (spaBuffer->datas[0].type == SPA_DATA_DmaBuf) {
1a3471
+      SyncDmaBuf(spaBuffer->datas[0].fd, DMA_BUF_SYNC_END);
1a3471
+    }
1a3471
+    munmap(map, spaBuffer->datas[0].maxsize + spaBuffer->datas[0].mapoffset);
1a3471
   }
1a3471
 }
1a3471
 
1a3471
@@ -725,10 +783,7 @@ void BaseCapturerPipeWire::OnStartRequestResponseSignal(
1a3471
       g_variant_get(variant, "(u@a{sv})", &stream_id, &options);
1a3471
       RTC_DCHECK(options != nullptr);
1a3471
 
1a3471
-      g_variant_lookup(options, "size", "(ii)", &width, &height);
1a3471
-
1a3471
-      that->desktop_size_.set(width, height);
1a3471
-
1a3471
+      that->pw_stream_node_id_ = stream_id;
1a3471
       g_variant_unref(options);
1a3471
       g_variant_unref(variant);
1a3471
     }
1a3471
@@ -813,10 +868,15 @@ void BaseCapturerPipeWire::CaptureFrame() {
1a3471
     return;
1a3471
   }
1a3471
 
1a3471
-  std::unique_ptr<DesktopFrame> result(new BasicDesktopFrame(desktop_size_));
1a3471
+  DesktopSize frame_size = desktop_size_;
1a3471
+  if (video_crop_size_initialized_) {
1a3471
+    frame_size = video_crop_size_;
1a3471
+  }
1a3471
+  
1a3471
+  std::unique_ptr<DesktopFrame> result(new BasicDesktopFrame(frame_size));
1a3471
   result->CopyPixelsFrom(
1a3471
-      current_frame_, (desktop_size_.width() * kBytesPerPixel),
1a3471
-      DesktopRect::MakeWH(desktop_size_.width(), desktop_size_.height()));
1a3471
+      current_frame_.get(), (frame_size.width() * kBytesPerPixel),
1a3471
+      DesktopRect::MakeWH(frame_size.width(), frame_size.height()));
1a3471
   if (!result) {
1a3471
     callback_->OnCaptureResult(Result::ERROR_TEMPORARY, nullptr);
1a3471
     return;
1a3471
@@ -837,4 +897,22 @@ bool BaseCapturerPipeWire::SelectSource(SourceId id) {
1a3471
   return true;
1a3471
 }
1a3471
 
1a3471
+// static
1a3471
+std::unique_ptr<DesktopCapturer>
1a3471
+BaseCapturerPipeWire::CreateRawScreenCapturer(
1a3471
+    const DesktopCaptureOptions& options) {
1a3471
+  std::unique_ptr<BaseCapturerPipeWire> capturer =
1a3471
+      std::make_unique<BaseCapturerPipeWire>(BaseCapturerPipeWire::CaptureSourceType::kAny);
1a3471
+  return std::move(capturer);}
1a3471
+
1a3471
+// static
1a3471
+std::unique_ptr<DesktopCapturer>
1a3471
+BaseCapturerPipeWire::CreateRawWindowCapturer(
1a3471
+    const DesktopCaptureOptions& options) {
1a3471
+
1a3471
+  std::unique_ptr<BaseCapturerPipeWire> capturer =
1a3471
+      std::make_unique<BaseCapturerPipeWire>(BaseCapturerPipeWire::CaptureSourceType::kAny);
1a3471
+  return std::move(capturer);
1a3471
+}
1a3471
+
1a3471
 }  // namespace webrtc
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.h b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.h
1a3471
index 56b101acbaa6..de54157d1a2a 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.h
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/base_capturer_pipewire.h
1a3471
@@ -22,17 +22,13 @@
1a3471
 
1a3471
 namespace webrtc {
1a3471
 
1a3471
-class PipeWireType {
1a3471
- public:
1a3471
-  spa_type_media_type media_type;
1a3471
-  spa_type_media_subtype media_subtype;
1a3471
-  spa_type_format_video format_video;
1a3471
-  spa_type_video_format video_format;
1a3471
-};
1a3471
-
1a3471
 class BaseCapturerPipeWire : public DesktopCapturer {
1a3471
  public:
1a3471
-  enum CaptureSourceType { Screen = 1, Window };
1a3471
+  enum CaptureSourceType : uint32_t {
1a3471
+    kScreen = 0b01,
1a3471
+    kWindow = 0b10,
1a3471
+    kAny = 0b11
1a3471
+  };
1a3471
 
1a3471
   explicit BaseCapturerPipeWire(CaptureSourceType source_type);
1a3471
   ~BaseCapturerPipeWire() override;
1a3471
@@ -43,28 +39,32 @@ class BaseCapturerPipeWire : public DesktopCapturer {
1a3471
   bool GetSourceList(SourceList* sources) override;
1a3471
   bool SelectSource(SourceId id) override;
1a3471
 
1a3471
+  static std::unique_ptr<DesktopCapturer> CreateRawScreenCapturer(
1a3471
+      const DesktopCaptureOptions& options);
1a3471
+
1a3471
+  static std::unique_ptr<DesktopCapturer> CreateRawWindowCapturer(
1a3471
+      const DesktopCaptureOptions& options);
1a3471
+
1a3471
  private:
1a3471
   // PipeWire types -->
1a3471
+  pw_context* pw_context_ = nullptr;
1a3471
   pw_core* pw_core_ = nullptr;
1a3471
-  pw_type* pw_core_type_ = nullptr;
1a3471
   pw_stream* pw_stream_ = nullptr;
1a3471
-  pw_remote* pw_remote_ = nullptr;
1a3471
-  pw_loop* pw_loop_ = nullptr;
1a3471
   pw_thread_loop* pw_main_loop_ = nullptr;
1a3471
-  PipeWireType* pw_type_ = nullptr;
1a3471
 
1a3471
+  spa_hook spa_core_listener_ = {};
1a3471
   spa_hook spa_stream_listener_ = {};
1a3471
-  spa_hook spa_remote_listener_ = {};
1a3471
 
1a3471
+  pw_core_events pw_core_events_ = {};
1a3471
   pw_stream_events pw_stream_events_ = {};
1a3471
-  pw_remote_events pw_remote_events_ = {};
1a3471
 
1a3471
-  spa_video_info_raw* spa_video_format_ = nullptr;
1a3471
+  struct spa_video_info_raw spa_video_format_;
1a3471
 
1a3471
+  guint32 pw_stream_node_id_ = 0;
1a3471
   gint32 pw_fd_ = -1;
1a3471
 
1a3471
   CaptureSourceType capture_source_type_ =
1a3471
-      BaseCapturerPipeWire::CaptureSourceType::Screen;
1a3471
+      BaseCapturerPipeWire::CaptureSourceType::kAny;
1a3471
 
1a3471
   // <-- end of PipeWire types
1a3471
 
1a3471
@@ -78,33 +78,37 @@ class BaseCapturerPipeWire : public DesktopCapturer {
1a3471
   guint sources_request_signal_id_ = 0;
1a3471
   guint start_request_signal_id_ = 0;
1a3471
 
1a3471
+  bool video_crop_size_initialized_ = false;
1a3471
+  DesktopSize video_crop_size_;;
1a3471
   DesktopSize desktop_size_ = {};
1a3471
   DesktopCaptureOptions options_ = {};
1a3471
 
1a3471
-  uint8_t* current_frame_ = nullptr;
1a3471
+  std::unique_ptr<uint8_t[]> current_frame_;
1a3471
   Callback* callback_ = nullptr;
1a3471
 
1a3471
   bool portal_init_failed_ = false;
1a3471
 
1a3471
   void InitPortal();
1a3471
   void InitPipeWire();
1a3471
-  void InitPipeWireTypes();
1a3471
 
1a3471
-  void CreateReceivingStream();
1a3471
+  pw_stream* CreateReceivingStream();
1a3471
   void HandleBuffer(pw_buffer* buffer);
1a3471
 
1a3471
   void ConvertRGBxToBGRx(uint8_t* frame, uint32_t size);
1a3471
 
1a3471
-  static void OnStateChanged(void* data,
1a3471
-                             pw_remote_state old_state,
1a3471
-                             pw_remote_state state,
1a3471
-                             const char* error);
1a3471
+  static void SyncDmaBuf(int fd, uint64_t start_or_end);
1a3471
+  static void OnCoreError(void *data,
1a3471
+                          uint32_t id,
1a3471
+                          int seq,
1a3471
+                          int res,
1a3471
+                          const char *message);
1a3471
+  static void OnStreamParamChanged(void *data,
1a3471
+                                   uint32_t id,
1a3471
+                                   const struct spa_pod *format);
1a3471
   static void OnStreamStateChanged(void* data,
1a3471
                                    pw_stream_state old_state,
1a3471
                                    pw_stream_state state,
1a3471
                                    const char* error_message);
1a3471
-
1a3471
-  static void OnStreamFormatChanged(void* data, const struct spa_pod* format);
1a3471
   static void OnStreamProcess(void* data);
1a3471
   static void OnNewBuffer(void* data, uint32_t id);
1a3471
 
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc
1a3471
index 26956fc67dc8..3813d697bb38 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/screen_capturer_pipewire.cc
1a3471
@@ -15,7 +15,7 @@
1a3471
 namespace webrtc {
1a3471
 
1a3471
 ScreenCapturerPipeWire::ScreenCapturerPipeWire()
1a3471
-    : BaseCapturerPipeWire(BaseCapturerPipeWire::CaptureSourceType::Screen) {}
1a3471
+    : BaseCapturerPipeWire(BaseCapturerPipeWire::CaptureSourceType::kScreen) {}
1a3471
 ScreenCapturerPipeWire::~ScreenCapturerPipeWire() {}
1a3471
 
1a3471
 // static
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc
1a3471
index 35436475cb4d..c43a1f1a0c4e 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/linux/window_capturer_pipewire.cc
1a3471
@@ -15,7 +15,7 @@
1a3471
 namespace webrtc {
1a3471
 
1a3471
 WindowCapturerPipeWire::WindowCapturerPipeWire()
1a3471
-    : BaseCapturerPipeWire(BaseCapturerPipeWire::CaptureSourceType::Window) {}
1a3471
+    : BaseCapturerPipeWire(BaseCapturerPipeWire::CaptureSourceType::kWindow) {}
1a3471
 WindowCapturerPipeWire::~WindowCapturerPipeWire() {}
1a3471
 
1a3471
 // static
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/screen_capturer_linux.cc b/media/webrtc/trunk/webrtc/modules/desktop_capture/screen_capturer_linux.cc
1a3471
index cf8a9dd0e0db..d27fab8d28d9 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/screen_capturer_linux.cc
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/screen_capturer_linux.cc
1a3471
@@ -26,7 +26,7 @@ std::unique_ptr<DesktopCapturer> DesktopCapturer::CreateRawScreenCapturer(
1a3471
     const DesktopCaptureOptions& options) {
1a3471
 #if defined(WEBRTC_USE_PIPEWIRE)
1a3471
   if (options.allow_pipewire() && DesktopCapturer::IsRunningUnderWayland()) {
1a3471
-    return ScreenCapturerPipeWire::CreateRawScreenCapturer(options);
1a3471
+    return BaseCapturerPipeWire::CreateRawScreenCapturer(options);
1a3471
   }
1a3471
 #endif  // defined(WEBRTC_USE_PIPEWIRE)
1a3471
 
1a3471
diff --git a/media/webrtc/trunk/webrtc/modules/desktop_capture/window_capturer_linux.cc b/media/webrtc/trunk/webrtc/modules/desktop_capture/window_capturer_linux.cc
1a3471
index 82359e50c2db..bb9724cf7cc2 100644
1a3471
--- a/media/webrtc/trunk/webrtc/modules/desktop_capture/window_capturer_linux.cc
1a3471
+++ b/media/webrtc/trunk/webrtc/modules/desktop_capture/window_capturer_linux.cc
1a3471
@@ -26,7 +26,7 @@ std::unique_ptr<DesktopCapturer> DesktopCapturer::CreateRawWindowCapturer(
1a3471
     const DesktopCaptureOptions& options) {
1a3471
 #if defined(WEBRTC_USE_PIPEWIRE)
1a3471
   if (options.allow_pipewire() && DesktopCapturer::IsRunningUnderWayland()) {
1a3471
-    return WindowCapturerPipeWire::CreateRawWindowCapturer(options);
1a3471
+    return BaseCapturerPipeWire::CreateRawWindowCapturer(options);
1a3471
   }
1a3471
 #endif  // defined(WEBRTC_USE_PIPEWIRE)
1a3471