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