Update to version 1.0.0

Add patch to avoid crash in deviceprovider.
Resolves: RHEL-17641
This commit is contained in:
Wim Taymans 2024-01-08 17:00:57 +01:00
parent 1b590e78ab
commit 1f965bf71c
6 changed files with 373 additions and 744 deletions

1
.gitignore vendored
View File

@ -48,3 +48,4 @@
/pipewire-0.3.32.tar.gz
/pipewire-0.3.47.tar.gz
/pipewire-0.3.67.tar.gz
/pipewire-1.0.0.tar.gz

View File

@ -0,0 +1,98 @@
From ecf4b071e5e474a362cde42dfdc8713da4a5b550 Mon Sep 17 00:00:00 2001
From: Wim Taymans <wtaymans@redhat.com>
Date: Thu, 14 Dec 2023 13:00:00 +0100
Subject: [PATCH] gst: keep track of node ports
Keep a list of ports for the node. When the node goes away, clear the
port links to the node. Handle the case where the port no longer has a
node.
This avoids a crash when, for example, the node permission is removed
and the port points to the now freed node_data.
Fixes #3708
---
src/gst/gstpipewiredeviceprovider.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/src/gst/gstpipewiredeviceprovider.c b/src/gst/gstpipewiredeviceprovider.c
index 03d763f40..30c436e52 100644
--- a/src/gst/gstpipewiredeviceprovider.c
+++ b/src/gst/gstpipewiredeviceprovider.c
@@ -180,9 +180,11 @@ struct node_data {
struct pw_node_info *info;
GstCaps *caps;
GstDevice *dev;
+ struct spa_list ports;
};
struct port_data {
+ struct spa_list link;
struct node_data *node_data;
struct pw_port *proxy;
struct spa_hook proxy_listener;
@@ -353,6 +355,9 @@ static void port_event_info(void *data, const struct pw_port_info *info)
pw_log_debug("%p", port_data);
+ if (node_data == NULL)
+ return;
+
if (info->change_mask & PW_PORT_CHANGE_MASK_PARAMS) {
for (i = 0; i < info->n_params; i++) {
uint32_t id = info->params[i].id;
@@ -375,6 +380,9 @@ static void port_event_param(void *data, int seq, uint32_t id,
struct node_data *node_data = port_data->node_data;
GstCaps *c1;
+ if (node_data == NULL)
+ return;
+
c1 = gst_caps_from_format (param);
if (c1 && node_data->caps)
gst_caps_append (node_data->caps, c1);
@@ -438,11 +446,17 @@ static void
destroy_node (void *data)
{
struct node_data *nd = data;
+ struct port_data *pd;
GstPipeWireDeviceProvider *self = nd->self;
GstDeviceProvider *provider = GST_DEVICE_PROVIDER (self);
pw_log_debug("destroy %p", nd);
+ spa_list_consume(pd, &nd->ports, link) {
+ spa_list_remove(&pd->link);
+ pd->node_data = NULL;
+ }
+
if (nd->dev != NULL) {
gst_device_provider_device_remove (provider, GST_DEVICE (nd->dev));
}
@@ -472,6 +486,7 @@ destroy_port (void *data)
{
struct port_data *pd = data;
pw_log_debug("destroy %p", pd);
+ spa_list_remove(&pd->link);
}
static const struct pw_proxy_events proxy_port_events = {
@@ -515,6 +530,7 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
nd->id = id;
if (!props || !spa_atou64(spa_dict_lookup(props, PW_KEY_OBJECT_SERIAL), &nd->serial, 0))
nd->serial = SPA_ID_INVALID;
+ spa_list_init(&nd->ports);
spa_list_append(&self->nodes, &nd->link);
pw_node_add_listener(node, &nd->node_listener, &node_events, nd);
pw_proxy_add_listener((struct pw_proxy*)node, &nd->proxy_listener, &proxy_node_events, nd);
@@ -541,6 +557,7 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
pd->id = id;
if (!props || !spa_atou64(spa_dict_lookup(props, PW_KEY_OBJECT_SERIAL), &pd->serial, 0))
pd->serial = SPA_ID_INVALID;
+ spa_list_append(&nd->ports, &pd->link);
pw_port_add_listener(port, &pd->port_listener, &port_events, pd);
pw_proxy_add_listener((struct pw_proxy*)port, &pd->proxy_listener, &proxy_port_events, pd);
resync(self);
--
2.43.0

View File

@ -1,619 +0,0 @@
From d64136204aa986774910a89fec7b2a3ff9ca4e6d Mon Sep 17 00:00:00 2001
From: Wim Taymans <wtaymans@redhat.com>
Date: Mon, 31 Jul 2023 13:07:10 +0200
Subject: [PATCH] v4l2: don't set inotify on /dev
Doing inotify on /dev is not a good idea because we will be woken up by
a lot of unrelated events.
There is a report of a performance regression on some IO benchmark
because of lock contention within the fsnotify subsystem due to this.
Instead, just watch for attribute changes on the /dev/videoX files
directly. We are only interested in attribute changes, udev should
notify us when the file is added or removed.
---
spa/plugins/v4l2/v4l2-udev.c | 307 +++++++++++++++++------------------
1 file changed, 153 insertions(+), 154 deletions(-)
diff --git a/spa/plugins/v4l2/v4l2-udev.c b/spa/plugins/v4l2/v4l2-udev.c
index ff5433e08..fbba351b8 100644
--- a/spa/plugins/v4l2/v4l2-udev.c
+++ b/spa/plugins/v4l2/v4l2-udev.c
@@ -53,8 +53,10 @@
#define ACTION_DISABLE 2
struct device {
+ struct impl *impl;
uint32_t id;
struct udev_device *dev;
+ struct spa_source notify;
unsigned int accessible:1;
unsigned int ignored:1;
unsigned int emitted:1;
@@ -79,66 +81,79 @@ struct impl {
uint32_t n_devices;
struct spa_source source;
- struct spa_source notify;
};
-static int impl_udev_open(struct impl *this)
+static int stop_inotify(struct device *dev);
+static int start_inotify(struct device *dev);
+
+static int impl_udev_open(struct impl *impl)
{
- if (this->udev == NULL) {
- this->udev = udev_new();
- if (this->udev == NULL)
+ if (impl->udev == NULL) {
+ impl->udev = udev_new();
+ if (impl->udev == NULL)
return -ENOMEM;
}
return 0;
}
-static int impl_udev_close(struct impl *this)
+static int impl_udev_close(struct impl *impl)
{
- if (this->udev != NULL)
- udev_unref(this->udev);
- this->udev = NULL;
+ if (impl->udev != NULL)
+ udev_unref(impl->udev);
+ impl->udev = NULL;
return 0;
}
-static struct device *add_device(struct impl *this, uint32_t id, struct udev_device *dev)
+static struct device *add_device(struct impl *impl, uint32_t id, struct udev_device *dev)
{
struct device *device;
- if (this->n_devices >= MAX_DEVICES)
+ if (impl->n_devices >= MAX_DEVICES)
return NULL;
- device = &this->devices[this->n_devices++];
+ device = &impl->devices[impl->n_devices++];
spa_zero(*device);
+ device->impl = impl;
+ device->notify.fd = -1;
device->id = id;
udev_device_ref(dev);
device->dev = dev;
+ start_inotify(device);
return device;
}
-static struct device *find_device(struct impl *this, uint32_t id)
+static struct device *find_device(struct impl *impl, uint32_t id)
{
uint32_t i;
- for (i = 0; i < this->n_devices; i++) {
- if (this->devices[i].id == id)
- return &this->devices[i];
+ for (i = 0; i < impl->n_devices; i++) {
+ if (impl->devices[i].id == id)
+ return &impl->devices[i];
}
return NULL;
}
-static void remove_device(struct impl *this, struct device *device)
+static void clear_device(struct device *device)
+{
+ stop_inotify(device);
+ if (device->dev)
+ udev_device_unref(device->dev);
+}
+
+static void remove_device(struct device *device)
{
- udev_device_unref(device->dev);
- *device = this->devices[--this->n_devices];
+ struct impl *impl = device->impl;
+ clear_device(device);
+ *device = impl->devices[--impl->n_devices];
}
-static void clear_devices(struct impl *this)
+static void clear_devices(struct impl *impl)
{
uint32_t i;
- for (i = 0; i < this->n_devices; i++)
- udev_device_unref(this->devices[i].dev);
- this->n_devices = 0;
+ for (i = 0; i < impl->n_devices; i++)
+ clear_device(&impl->devices[i]);
+ impl->n_devices = 0;
}
-static uint32_t get_device_id(struct impl *this, struct udev_device *dev)
+static uint32_t get_device_id(struct impl *impl, struct udev_device *dev)
{
const char *str;
@@ -234,8 +249,9 @@ static void unescape(const char *src, char *dst)
*d = 0;
}
-static int emit_object_info(struct impl *this, struct device *device)
+static int emit_object_info(struct device *device)
{
+ struct impl *impl = device->impl;
struct spa_device_object_info info;
uint32_t id = device->id;
struct udev_device *dev = device->dev;
@@ -334,54 +350,55 @@ static int emit_object_info(struct impl *this, struct device *device)
items[n_items++] = SPA_DICT_ITEM_INIT(SPA_KEY_DEVICE_CAPABILITIES, str);
}
info.props = &SPA_DICT_INIT(items, n_items);
- spa_device_emit_object_info(&this->hooks, id, &info);
+ spa_device_emit_object_info(&impl->hooks, id, &info);
device->emitted = true;
return 1;
}
-static bool check_access(struct impl *this, struct device *device)
+static bool check_access(struct device *device)
{
char path[128];
snprintf(path, sizeof(path), "/dev/video%u", device->id);
device->accessible = access(path, R_OK|W_OK) >= 0;
- spa_log_debug(this->log, "%s accessible:%u", path, device->accessible);
+ spa_log_debug(device->impl->log, "%s accessible:%u", path, device->accessible);
return device->accessible;
}
-static void process_device(struct impl *this, uint32_t action, struct udev_device *dev)
+static void process_device(struct impl *impl, uint32_t action, struct udev_device *dev)
{
uint32_t id;
struct device *device;
bool emitted;
- if ((id = get_device_id(this, dev)) == SPA_ID_INVALID)
+ if ((id = get_device_id(impl, dev)) == SPA_ID_INVALID)
return;
- device = find_device(this, id);
+ device = find_device(impl, id);
if (device && device->ignored)
return;
switch (action) {
case ACTION_ADD:
if (device == NULL)
- device = add_device(this, id, dev);
+ device = add_device(impl, id, dev);
if (device == NULL)
return;
- if (!check_access(this, device))
+ if (!check_access(device))
return;
- emit_object_info(this, device);
+ else
+ emit_object_info(device);
break;
case ACTION_REMOVE:
if (device == NULL)
return;
emitted = device->emitted;
- remove_device(this, device);
+ remove_device(device);
if (emitted)
- spa_device_emit_object_info(&this->hooks, id, NULL);
+ spa_device_emit_object_info(&impl->hooks, id, NULL);
break;
case ACTION_DISABLE:
@@ -389,27 +406,16 @@ static void process_device(struct impl *this, uint32_t action, struct udev_devic
return;
if (device->emitted) {
device->emitted = false;
- spa_device_emit_object_info(&this->hooks, id, NULL);
+ spa_device_emit_object_info(&impl->hooks, id, NULL);
}
break;
}
}
-static int stop_inotify(struct impl *this)
-{
- if (this->notify.fd == -1)
- return 0;
- spa_log_info(this->log, "stop inotify");
- spa_loop_remove_source(this->main_loop, &this->notify);
- close(this->notify.fd);
- this->notify.fd = -1;
- return 0;
-}
-
static void impl_on_notify_events(struct spa_source *source)
{
- bool deleted = false;
- struct impl *this = source->data;
+ struct device *dev = source->data;
+ struct impl *impl = dev->impl;
union {
unsigned char name[sizeof(struct inotify_event) + NAME_MAX + 1];
struct inotify_event e; /* for appropriate alignment */
@@ -430,143 +436,138 @@ static void impl_on_notify_events(struct spa_source *source)
for (p = &buf; p < e;
p = SPA_PTROFF(p, sizeof(struct inotify_event) + event->len, void)) {
- unsigned int id;
- struct device *device;
event = (const struct inotify_event *) p;
if ((event->mask & IN_ATTRIB)) {
bool access;
- if (sscanf(event->name, "video%u", &id) != 1)
- continue;
- if ((device = find_device(this, id)) == NULL)
- continue;
- access = check_access(this, device);
- if (access && !device->emitted)
- process_device(this, ACTION_ADD, device->dev);
- else if (!access && device->emitted)
- process_device(this, ACTION_DISABLE, device->dev);
+ access = check_access(dev);
+ if (access && !dev->emitted)
+ process_device(impl, ACTION_ADD, dev->dev);
+ else if (!access && dev->emitted)
+ process_device(impl, ACTION_DISABLE, dev->dev);
}
- /* /dev/ might have been removed */
- if ((event->mask & (IN_DELETE_SELF | IN_MOVE_SELF)))
- deleted = true;
}
}
- if (deleted)
- stop_inotify(this);
}
-static int start_inotify(struct impl *this)
+static int start_inotify(struct device *dev)
{
+ struct impl *impl = dev->impl;
int res, notify_fd;
+ char name[32];
- if (this->notify.fd != -1)
+ if (dev->notify.fd != -1)
return 0;
if ((notify_fd = inotify_init1(IN_CLOEXEC | IN_NONBLOCK)) < 0)
return -errno;
- res = inotify_add_watch(notify_fd, "/dev",
- IN_ATTRIB | IN_CLOSE_WRITE | IN_DELETE_SELF | IN_MOVE_SELF);
+ snprintf(name, sizeof(name), "/dev/video%u", dev->id);
+
+ res = inotify_add_watch(notify_fd, name, IN_ATTRIB | IN_CLOSE_WRITE);
if (res < 0) {
res = -errno;
close(notify_fd);
if (res == -ENOENT) {
- spa_log_debug(this->log, "/dev/ does not exist yet");
+ spa_log_debug(impl->log, "%s does not exist yet", name);
return 0;
}
- spa_log_error(this->log, "inotify_add_watch() failed: %s", spa_strerror(res));
+ spa_log_error(impl->log, "inotify_add_watch() failed: %s", spa_strerror(res));
return res;
}
- spa_log_info(this->log, "start inotify");
- this->notify.func = impl_on_notify_events;
- this->notify.data = this;
- this->notify.fd = notify_fd;
- this->notify.mask = SPA_IO_IN | SPA_IO_ERR;
+ spa_log_info(impl->log, "start inotify for %s", name);
+ dev->notify.func = impl_on_notify_events;
+ dev->notify.data = dev;
+ dev->notify.fd = notify_fd;
+ dev->notify.mask = SPA_IO_IN | SPA_IO_ERR;
- spa_loop_add_source(this->main_loop, &this->notify);
+ spa_loop_add_source(impl->main_loop, &dev->notify);
return 0;
}
+static int stop_inotify(struct device *dev)
+{
+ struct impl *impl = dev->impl;
+ if (dev->notify.fd == -1)
+ return 0;
+ spa_log_info(impl->log, "stop inotify for /dev/video%u", dev->id);
+ spa_loop_remove_source(impl->main_loop, &dev->notify);
+ close(dev->notify.fd);
+ dev->notify.fd = -1;
+ return 0;
+}
+
static void impl_on_fd_events(struct spa_source *source)
{
- struct impl *this = source->data;
+ struct impl *impl = source->data;
struct udev_device *dev;
const char *action;
- dev = udev_monitor_receive_device(this->umonitor);
+ dev = udev_monitor_receive_device(impl->umonitor);
if (dev == NULL)
return;
if ((action = udev_device_get_action(dev)) == NULL)
action = "change";
- spa_log_debug(this->log, "action %s", action);
-
- start_inotify(this);
+ spa_log_debug(impl->log, "action %s", action);
if (spa_streq(action, "add") ||
spa_streq(action, "change")) {
- process_device(this, ACTION_ADD, dev);
+ process_device(impl, ACTION_ADD, dev);
} else if (spa_streq(action, "remove")) {
- process_device(this, ACTION_REMOVE, dev);
+ process_device(impl, ACTION_REMOVE, dev);
}
udev_device_unref(dev);
}
-static int start_monitor(struct impl *this)
+static int start_monitor(struct impl *impl)
{
- int res;
-
- if (this->umonitor != NULL)
+ if (impl->umonitor != NULL)
return 0;
- this->umonitor = udev_monitor_new_from_netlink(this->udev, "udev");
- if (this->umonitor == NULL)
+ impl->umonitor = udev_monitor_new_from_netlink(impl->udev, "udev");
+ if (impl->umonitor == NULL)
return -ENOMEM;
- udev_monitor_filter_add_match_subsystem_devtype(this->umonitor,
+ udev_monitor_filter_add_match_subsystem_devtype(impl->umonitor,
"video4linux", NULL);
- udev_monitor_enable_receiving(this->umonitor);
-
- this->source.func = impl_on_fd_events;
- this->source.data = this;
- this->source.fd = udev_monitor_get_fd(this->umonitor);
- this->source.mask = SPA_IO_IN | SPA_IO_ERR;
+ udev_monitor_enable_receiving(impl->umonitor);
- spa_log_debug(this->log, "monitor %p", this->umonitor);
- spa_loop_add_source(this->main_loop, &this->source);
+ impl->source.func = impl_on_fd_events;
+ impl->source.data = impl;
+ impl->source.fd = udev_monitor_get_fd(impl->umonitor);
+ impl->source.mask = SPA_IO_IN | SPA_IO_ERR;
- if ((res = start_inotify(this)) < 0)
- return res;
+ spa_log_debug(impl->log, "monitor %p", impl->umonitor);
+ spa_loop_add_source(impl->main_loop, &impl->source);
return 0;
}
-static int stop_monitor(struct impl *this)
+static int stop_monitor(struct impl *impl)
{
- if (this->umonitor == NULL)
+ if (impl->umonitor == NULL)
return 0;
- clear_devices (this);
-
- spa_loop_remove_source(this->main_loop, &this->source);
- udev_monitor_unref(this->umonitor);
- this->umonitor = NULL;
+ clear_devices(impl);
- stop_inotify(this);
+ spa_loop_remove_source(impl->main_loop, &impl->source);
+ udev_monitor_unref(impl->umonitor);
+ impl->umonitor = NULL;
return 0;
}
-static int enum_devices(struct impl *this)
+static int enum_devices(struct impl *impl)
{
struct udev_enumerate *enumerate;
struct udev_list_entry *devices;
- enumerate = udev_enumerate_new(this->udev);
+ enumerate = udev_enumerate_new(impl->udev);
if (enumerate == NULL)
return -ENOMEM;
@@ -577,11 +578,11 @@ static int enum_devices(struct impl *this)
devices = udev_list_entry_get_next(devices)) {
struct udev_device *dev;
- dev = udev_device_new_from_syspath(this->udev, udev_list_entry_get_name(devices));
+ dev = udev_device_new_from_syspath(impl->udev, udev_list_entry_get_name(devices));
if (dev == NULL)
continue;
- process_device(this, ACTION_ADD, dev);
+ process_device(impl, ACTION_ADD, dev);
udev_device_unref(dev);
}
@@ -596,24 +597,24 @@ static const struct spa_dict_item device_info_items[] = {
{ SPA_KEY_API_UDEV_MATCH, "video4linux" },
};
-static void emit_device_info(struct impl *this, bool full)
+static void emit_device_info(struct impl *impl, bool full)
{
- uint64_t old = full ? this->info.change_mask : 0;
+ uint64_t old = full ? impl->info.change_mask : 0;
if (full)
- this->info.change_mask = this->info_all;
- if (this->info.change_mask) {
- this->info.props = &SPA_DICT_INIT_ARRAY(device_info_items);
- spa_device_emit_info(&this->hooks, &this->info);
- this->info.change_mask = old;
+ impl->info.change_mask = impl->info_all;
+ if (impl->info.change_mask) {
+ impl->info.props = &SPA_DICT_INIT_ARRAY(device_info_items);
+ spa_device_emit_info(&impl->hooks, &impl->info);
+ impl->info.change_mask = old;
}
}
static void impl_hook_removed(struct spa_hook *hook)
{
- struct impl *this = hook->priv;
- if (spa_hook_list_is_empty(&this->hooks)) {
- stop_monitor(this);
- impl_udev_close(this);
+ struct impl *impl = hook->priv;
+ if (spa_hook_list_is_empty(&impl->hooks)) {
+ stop_monitor(impl);
+ impl_udev_close(impl);
}
}
@@ -622,29 +623,29 @@ impl_device_add_listener(void *object, struct spa_hook *listener,
const struct spa_device_events *events, void *data)
{
int res;
- struct impl *this = object;
+ struct impl *impl = object;
struct spa_hook_list save;
- spa_return_val_if_fail(this != NULL, -EINVAL);
+ spa_return_val_if_fail(impl != NULL, -EINVAL);
spa_return_val_if_fail(events != NULL, -EINVAL);
- if ((res = impl_udev_open(this)) < 0)
+ if ((res = impl_udev_open(impl)) < 0)
return res;
- spa_hook_list_isolate(&this->hooks, &save, listener, events, data);
+ spa_hook_list_isolate(&impl->hooks, &save, listener, events, data);
- emit_device_info(this, true);
+ emit_device_info(impl, true);
- if ((res = enum_devices(this)) < 0)
+ if ((res = enum_devices(impl)) < 0)
return res;
- if ((res = start_monitor(this)) < 0)
+ if ((res = start_monitor(impl)) < 0)
return res;
- spa_hook_list_join(&this->hooks, &save);
+ spa_hook_list_join(&impl->hooks, &save);
listener->removed = impl_hook_removed;
- listener->priv = this;
+ listener->priv = impl;
return 0;
}
@@ -656,15 +657,15 @@ static const struct spa_device_methods impl_device = {
static int impl_get_interface(struct spa_handle *handle, const char *type, void **interface)
{
- struct impl *this;
+ struct impl *impl;
spa_return_val_if_fail(handle != NULL, -EINVAL);
spa_return_val_if_fail(interface != NULL, -EINVAL);
- this = (struct impl *) handle;
+ impl = (struct impl *) handle;
if (spa_streq(type, SPA_TYPE_INTERFACE_Device))
- *interface = &this->device;
+ *interface = &impl->device;
else
return -ENOENT;
@@ -673,9 +674,9 @@ static int impl_get_interface(struct spa_handle *handle, const char *type, void
static int impl_clear(struct spa_handle *handle)
{
- struct impl *this = (struct impl *) handle;
- stop_monitor(this);
- impl_udev_close(this);
+ struct impl *impl = (struct impl *) handle;
+ stop_monitor(impl);
+ impl_udev_close(impl);
return 0;
}
@@ -693,7 +694,7 @@ impl_init(const struct spa_handle_factory *factory,
const struct spa_support *support,
uint32_t n_support)
{
- struct impl *this;
+ struct impl *impl;
spa_return_val_if_fail(factory != NULL, -EINVAL);
spa_return_val_if_fail(handle != NULL, -EINVAL);
@@ -701,27 +702,25 @@ impl_init(const struct spa_handle_factory *factory,
handle->get_interface = impl_get_interface;
handle->clear = impl_clear;
- this = (struct impl *) handle;
- this->notify.fd = -1;
-
- this->log = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Log);
- this->main_loop = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Loop);
+ impl = (struct impl *) handle;
+ impl->log = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Log);
+ impl->main_loop = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Loop);
- if (this->main_loop == NULL) {
- spa_log_error(this->log, "a main-loop is needed");
+ if (impl->main_loop == NULL) {
+ spa_log_error(impl->log, "a main-loop is needed");
return -EINVAL;
}
- spa_hook_list_init(&this->hooks);
+ spa_hook_list_init(&impl->hooks);
- this->device.iface = SPA_INTERFACE_INIT(
+ impl->device.iface = SPA_INTERFACE_INIT(
SPA_TYPE_INTERFACE_Device,
SPA_VERSION_DEVICE,
- &impl_device, this);
+ &impl_device, impl);
- this->info = SPA_DEVICE_INFO_INIT();
- this->info_all = SPA_DEVICE_CHANGE_MASK_FLAGS |
+ impl->info = SPA_DEVICE_INFO_INIT();
+ impl->info_all = SPA_DEVICE_CHANGE_MASK_FLAGS |
SPA_DEVICE_CHANGE_MASK_PROPS;
- this->info.flags = 0;
+ impl->info.flags = 0;
return 0;
}
--
2.41.0

View File

@ -1,6 +1,6 @@
%global majorversion 0
%global minorversion 3
%global microversion 67
%global majorversion 1
%global minorversion 0
%global microversion 0
%global apiversion 0.3
%global spaversion 0.2
@ -9,7 +9,7 @@
%global ms_version 0.4.2
# For rpmdev-bumpspec and releng automation
%global baserelease 2
%global baserelease 1
#global snapdate 20210107
#global gitcommit b17db2cebc1a5ab2c01851d29c05f79cd2f262bb
@ -25,12 +25,6 @@
%bcond_without alsa
%bcond_without vulkan
%if (0%{?fedora} && 0%{?fedora} < 35)
%bcond_without media_session
%else
%bcond_with media_session
%endif
# Features disabled for RHEL 8
%if 0%{?rhel} && 0%{?rhel} < 9
%bcond_with pulse
@ -43,12 +37,27 @@
# Features disabled for RHEL
%if 0%{?rhel}
%bcond_with jackserver_plugin
%bcond_with libmysofa
%bcond_with lc3
%bcond_with lv2
%bcond_with roc
%else
%bcond_without jackserver_plugin
%bcond_without libmysofa
%bcond_without lc3
%bcond_without lv2
#bcond_without roc
%bcond_with roc
%endif
# Disabled for RHEL < 10 and Fedora < 36
%if (0%{?rhel} && 0%{?rhel} < 10) || (0%{?fedora} && 0%{?fedora} < 36)
%if 0%{?rhel} || ("%{_arch}" == "s390x")
%bcond_with ffado
%else
%bcond_without ffado
%endif
# Disabled for RHEL < 11 and Fedora < 36
%if (0%{?rhel} && 0%{?rhel} < 11) || (0%{?fedora} && 0%{?fedora} < 36) || ("%{_arch}" == "s390x") || ("%{_arch}" == "ppc64le")
%bcond_with libcamera_plugin
%else
%bcond_without libcamera_plugin
@ -67,22 +76,14 @@ Source0: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/%{git
%else
Source0: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/%{version}/pipewire-%{version}.tar.gz
%endif
%if %{with media-session}
Source1: https://gitlab.freedesktop.org/pipewire/media-session/-/archive/%{ms_version}/media-session-%{ms_version}.tar.gz
%endif
Source1: pipewire.sysusers
## upstream patches
Patch0001: 0001-v4l2-don-t-set-inotify-on-dev.patch
Patch0001: 0001-gst-keep-track-of-node-ports.patch
## upstreamable patches
## fedora patches
%if %{with media-session}
Patch1001: 0001-Build-media-session-from-local-tarbal.patch
%endif
## rhel patches
BuildRequires: gettext
BuildRequires: meson >= 0.59.0
@ -104,9 +105,6 @@ BuildRequires: pkgconfig(ldacBT-enc)
BuildRequires: pkgconfig(ldacBT-abr)
%endif
BuildRequires: pkgconfig(fdk-aac)
%if %{with vulkan}
BuildRequires: pkgconfig(vulkan)
%endif
BuildRequires: pkgconfig(bluez)
BuildRequires: systemd
BuildRequires: systemd-devel
@ -116,24 +114,22 @@ BuildRequires: doxygen
BuildRequires: python-docutils
BuildRequires: graphviz
BuildRequires: sbc-devel
%if %{with lc3}
BuildRequires: liblc3-devel
%endif
BuildRequires: libsndfile-devel
BuildRequires: ncurses-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: avahi-devel
BuildRequires: pkgconfig(webrtc-audio-processing) >= 0.2
BuildRequires: libusb1-devel
#BuildRequires: libunwind-devel
BuildRequires: readline-devel
#BuildRequires: lilv-devel
BuildRequires: openssl-devel
BuildRequires: libcanberra-devel
#BuildRequires: roc-toolkit-devel
#BuildRequires: openfec-devel
BuildRequires: libuv-devel
BuildRequires: speexdsp-devel
#BuildRequires: sox-devel
#BuildRequires: libmysofa-devel
BuildRequires: systemd-rpm-macros
%{?sysusers_requires_compat}
Requires(pre): shadow-utils
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
@ -192,24 +188,6 @@ Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description utils
This package contains command line utilities for the PipeWire media server.
%if %{with media_session}
%package media-session
Summary: PipeWire Media Session Manager
License: MIT
Recommends: %{name}%{?_isa} = %{version}-%{release}
Obsoletes: %{name}-libpulse < %{version}-%{release}
# before 0.3.30-5 the session manager was in the main pipewire package
Conflicts: %{name}%{?_isa} < 0.3.30-5
# Virtual Provides to support swapping between PipeWire session manager implementations
Provides: pipewire-session-manager
Conflicts: pipewire-session-manager
%description media-session
This package contains the reference Media Session Manager for the
PipeWire media server.
%endif
%if %{with alsa}
%package alsa
Summary: PipeWire media server ALSA support
@ -230,12 +208,11 @@ This package contains an ALSA plugin for the PipeWire media server.
%endif
%if %{with jack}
%package jack-audio-connection-kit
Summary: PipeWire JACK implementation
%package jack-audio-connection-kit-libs
Summary: PipeWire JACK implementation libraries
License: MIT
Recommends: %{name}%{?_isa} = %{version}-%{release}
Conflicts: jack-audio-connection-kit
Conflicts: jack-audio-connection-kit-dbus
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
# Fixed jack subpackages
Conflicts: %{name}-libjack < 0.3.13-6
Conflicts: %{name}-jack-audio-connection-kit < 0.3.13-6
@ -243,12 +220,26 @@ Conflicts: %{name}-jack-audio-connection-kit < 0.3.13-6
Obsoletes: %{name}-libjack < 0.3.19-2
Provides: %{name}-libjack = %{version}-%{release}
Provides: %{name}-libjack%{?_isa} = %{version}-%{release}
%description jack-audio-connection-kit-libs
This package provides a JACK implementation libraries based on PipeWire
%package jack-audio-connection-kit
Summary: PipeWire JACK implementation
License: MIT
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-jack-audio-connection-kit-libs%{?_isa} = %{version}-%{release}
Conflicts: jack-audio-connection-kit
Conflicts: jack-audio-connection-kit-dbus
# Replaces libjack subpackage
%if ! (0%{?fedora} && 0%{?fedora} < 34)
# Ensure this is provided by default to route all audio
Supplements: %{name} = %{version}-%{release}
# Replace JACK with PipeWire-JACK
## N.B.: If jack gets updated in F33, this will need to be bumped
Obsoletes: jack-audio-connection-kit < 1.9.16-2
# Fix upgrade path to f38, see #2203789
Obsoletes: jack-audio-connection-kit-example-clients < 1.9.22
%endif
%description jack-audio-connection-kit
@ -257,9 +248,9 @@ This package provides a JACK implementation based on PipeWire
%package jack-audio-connection-kit-devel
Summary: Development files for %{name}-jack-audio-connection-kit
License: MIT
Requires: %{name}-jack-audio-connection-kit%{?_isa} = %{version}-%{release}
Requires: %{name}-jack-audio-connection-kit-libs%{?_isa} = %{version}-%{release}
Conflicts: jack-audio-connection-kit-devel
Enhances: %{name}-jack-audio-connection-kit
Enhances: %{name}-jack-audio-connection-kit-libs
%description jack-audio-connection-kit-devel
This package provides development files for building JACK applications
@ -272,6 +263,7 @@ Summary: PipeWire media server JACK support
License: MIT
BuildRequires: jack-audio-connection-kit-devel
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-jack-audio-connection-kit-libs = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
Requires: jack-audio-connection-kit
@ -294,14 +286,24 @@ Requires: libdrm
This package contains the PipeWire spa plugin to access cameras through libcamera.
%endif
%if %{with vulkan}
%package plugin-vulkan
Summary: PipeWire media server vulkan support
License: MIT
BuildRequires: pkgconfig(vulkan)
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description plugin-vulkan
This package contains the PipeWire spa plugin for vulkan.
%endif
%if %{with pulse}
%package pulseaudio
Summary: PipeWire PulseAudio implementation
License: MIT
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
Requires: pulseaudio-utils
BuildRequires: pulseaudio-libs
Conflicts: pulseaudio
# Fixed pulseaudio subpackages
Conflicts: %{name}-libpulse < 0.3.13-6
@ -354,6 +356,58 @@ Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description module-x11
This package contains X11 bell support for PipeWire.
%if %{with ffado}
%package module-ffado
Summary: PipeWire media server ffado support
License: MIT
BuildRequires: libffado-devel
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description module-ffado
This package contains the FFADO support for PipeWire.
%endif
%if %{with roc}
%package module-roc
Summary: PipeWire media server ROC support
License: MIT
BuildRequires: roc-toolkit-devel
BuildRequires: libunwind-devel
BuildRequires: openfec-devel
BuildRequires: sox-devel
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description module-roc
This package contains the ROC support for PipeWire.
%endif
%if %{with libmysofa}
%package module-filter-chain-sofa
Summary: PipeWire media server sofa filter-chain support
License: MIT
BuildRequires: libmysofa-devel
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description module-filter-chain-sofa
This package contains the mysofa support for PipeWire filter-chain.
%endif
%if %{with lv2}
%package module-filter-chain-lv2
Summary: PipeWire media server lv2 filter-chain support
License: MIT
BuildRequires: lilv-devel
Recommends: %{name}%{?_isa} = %{version}-%{release}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description module-filter-chain-lv2
This package contains the mysofa support for PipeWire filter-chain.
%endif
%prep
%autosetup -p1 %{?snapdate:-n %{name}-%{gitcommit}}
@ -366,37 +420,41 @@ cp %{SOURCE1} subprojects/packagefiles/
%build
%meson \
-D docs=enabled -D man=enabled -D gstreamer=enabled -D systemd=enabled \
-D gstreamer-device-provider=disabled -D sdl2=disabled \
-D sdl2=disabled \
-D audiotestsrc=disabled -D videotestsrc=disabled \
-D volume=disabled -D bluez5-codec-aptx=disabled \
-D bluez5-codec-lc3plus=disabled -D roc=disabled -D x11-xfixes=disabled \
-D lv2=disabled -D libmysofa=disabled \
-D bluez5-codec-lc3plus=disabled -D x11-xfixes=disabled \
%ifarch s390x
-D bluez5-codec-ldac=disabled \
%endif
%{!?with_media_session:-D session-managers=[]} \
-D session-managers=[] \
%{!?with_jack:-D pipewire-jack=disabled} \
%{!?with_jackserver_plugin:-D jack=disabled} \
%{!?with_libcamera_plugin:-D libcamera=disabled} \
%{?with_jack:-D jack-devel=true} \
%{!?with_alsa:-D pipewire-alsa=disabled} \
%{?with_vulkan:-D vulkan=enabled} \
%{!?with_libmysofa:-D libmysofa=disabled} \
%{!?with_lv2:-D lv2=disabled} \
%{!?with_roc:-D roc=disabled} \
%{!?with_ffado:-D libffado=disabled} \
%{!?with_lc3:-D bluez5-codec-lc3=disabled} \
%{nil}
%meson_build
%install
install -p -D -m 0644 %{SOURCE1} %{buildroot}%{_sysusersdir}/pipewire.conf
%meson_install
# Own this directory so add-ons can use it
install -d -m 0755 %{buildroot}%{_datadir}/pipewire/pipewire.conf.d/
%if %{with jack}
mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d/
echo %{_libdir}/pipewire-%{apiversion}/jack/ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/pipewire-jack-%{_arch}.conf
%else
rm %{buildroot}%{_datadir}/pipewire/jack.conf
%if %{with media_session}
rm %{buildroot}%{_datadir}/pipewire/media-session.d/with-jack
%endif
%endif
%if %{with alsa}
@ -406,10 +464,6 @@ cp %{buildroot}%{_datadir}/alsa/alsa.conf.d/50-pipewire.conf \
cp %{buildroot}%{_datadir}/alsa/alsa.conf.d/99-pipewire-default.conf \
%{buildroot}%{_sysconfdir}/alsa/conf.d/99-pipewire-default.conf
%if %{with media_session}
touch %{buildroot}%{_datadir}/pipewire/media-session.d/with-alsa
%endif
%endif
%if ! %{with pulse}
@ -418,16 +472,14 @@ rm %{buildroot}%{_bindir}/pipewire-pulse
rm %{buildroot}%{_userunitdir}/pipewire-pulse.*
rm %{buildroot}%{_datadir}/pipewire/pipewire-pulse.conf
%if %{with media_session}
rm %{buildroot}%{_datadir}/pipewire/media-session.d/with-pulseaudio
%endif
%if %{with pulse}
# Own this directory so add-ons can use it
install -d -m 0755 %{buildroot}%{_datadir}/pipewire/pipewire-pulse.conf.d/
%endif
%find_lang %{name}
%if %{with media_session}
%find_lang media-session
%endif
# upstream should use udev.pc
mkdir -p %{buildroot}%{_prefix}/lib/udev/rules.d
@ -442,10 +494,7 @@ echo "test failed"
fi
%pre
getent group pipewire >/dev/null || groupadd -r pipewire
getent passwd pipewire >/dev/null || \
useradd -r -g pipewire -d %{_localstatedir}/run/pipewire -s /sbin/nologin -c "PipeWire System Daemon" pipewire
exit 0
%sysusers_create_compat %{SOURCE1}
%post
%systemd_user_post pipewire.service
@ -463,11 +512,6 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%systemd_user_post pipewire-pulse.socket
%endif
%if %{with media_session}
%post media-session
%systemd_user_post pipewire-media-session.service
%endif
%files
%license LICENSE COPYING
%doc README.md NEWS
@ -476,38 +520,22 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%{_bindir}/pipewire
%{_bindir}/pipewire-avb
%{_bindir}/pipewire-aes67
%{_bindir}/pipewire-vulkan
%{_mandir}/man1/pipewire.1*
%dir %{_datadir}/pipewire/
%dir %{_datadir}/pipewire/pipewire.conf.d/
%{_datadir}/pipewire/pipewire.conf
%{_datadir}/pipewire/pipewire.conf.avail/10-rates.conf
%{_datadir}/pipewire/pipewire.conf.avail/20-upmix.conf
%{_datadir}/pipewire/minimal.conf
%{_datadir}/pipewire/filter-chain.conf
%{_datadir}/pipewire/filter-chain/*.conf
%{_datadir}/pipewire/pipewire-avb.conf
%{_datadir}/pipewire/pipewire-aes67.conf
%{_datadir}/pipewire/pipewire-vulkan.conf
%{_mandir}/man5/pipewire.conf.5*
%config(noreplace) %{_sysconfdir}/security/limits.d/*.conf
%if %{with media_session}
%files media-session -f media-session.lang
%{_bindir}/pipewire-media-session
%{_userunitdir}/pipewire-media-session.service
%dir %{_datadir}/pipewire/media-session.d/
%{_datadir}/pipewire/media-session.d/alsa-monitor.conf
%{_datadir}/pipewire/media-session.d/bluez-monitor.conf
%{_datadir}/pipewire/media-session.d/media-session.conf
%{_datadir}/pipewire/media-session.d/v4l2-monitor.conf
%if %{with alsa}
%{_datadir}/pipewire/media-session.d/with-alsa
%endif
%if %{with jack}
%{_datadir}/pipewire/media-session.d/with-jack
%endif
%if %{with pulse}
%{_datadir}/pipewire/media-session.d/with-pulseaudio
%endif
%endif
%{_sysusersdir}/pipewire.conf
%files libs -f %{name}.lang
%license LICENSE COPYING
@ -525,18 +553,19 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-link-factory.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-loopback.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-metadata.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-netjack2-driver.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-netjack2-manager.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-pipe-tunnel.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-portal.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-profiler.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-protocol-native.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-protocol-pulse.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-protocol-simple.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-pulse-tunnel.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-raop-discover.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-raop-sink.so
#%{_libdir}/pipewire-%{apiversion}/libpipewire-module-roc-sink.so
#%{_libdir}/pipewire-%{apiversion}/libpipewire-module-roc-source.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-rtkit.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-rtp-sap.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-rtp-session.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-rtp-sink.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-rtp-source.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-rt.so
@ -545,6 +574,8 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-spa-device.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-spa-node-factory.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-spa-node.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-vban-send.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-vban-recv.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-zeroconf-discover.so
%dir %{_datadir}/alsa-card-profile/
%dir %{_datadir}/alsa-card-profile/mixer/
@ -564,11 +595,52 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%{_libdir}/spa-%{spaversion}/support/
%{_libdir}/spa-%{spaversion}/v4l2/
%{_libdir}/spa-%{spaversion}/videoconvert/
%if %{with vulkan}
%{_libdir}/spa-%{spaversion}/vulkan/
%endif
%{_datadir}/pipewire/client.conf
%{_datadir}/pipewire/client.conf.avail/20-upmix.conf
%{_datadir}/pipewire/client-rt.conf
%{_datadir}/pipewire/client-rt.conf.avail/20-upmix.conf
%{_mandir}/man7/libpipewire-module-access.7.gz
%{_mandir}/man7/libpipewire-module-adapter.7.gz
%{_mandir}/man7/libpipewire-module-avb.7.gz
%{_mandir}/man7/libpipewire-module-client-device.7.gz
%{_mandir}/man7/libpipewire-module-client-node.7.gz
%{_mandir}/man7/libpipewire-module-combine-stream.7.gz
%{_mandir}/man7/libpipewire-module-echo-cancel.7.gz
%{_mandir}/man7/libpipewire-module-example-filter.7.gz
%{_mandir}/man7/libpipewire-module-example-sink.7.gz
%{_mandir}/man7/libpipewire-module-example-source.7.gz
%{_mandir}/man7/libpipewire-module-fallback-sink.7.gz
%{_mandir}/man7/libpipewire-module-ffado-driver.7.gz
%{_mandir}/man7/libpipewire-module-filter-chain.7.gz
%{_mandir}/man7/libpipewire-module-jack-tunnel.7.gz
%{_mandir}/man7/libpipewire-module-jackdbus-detect.7.gz
%{_mandir}/man7/libpipewire-module-link-factory.7.gz
%{_mandir}/man7/libpipewire-module-loopback.7.gz
%{_mandir}/man7/libpipewire-module-metadata.7.gz
%{_mandir}/man7/libpipewire-module-netjack2-driver.7.gz
%{_mandir}/man7/libpipewire-module-netjack2-manager.7.gz
%{_mandir}/man7/libpipewire-module-pipe-tunnel.7.gz
%{_mandir}/man7/libpipewire-module-portal.7.gz
%{_mandir}/man7/libpipewire-module-profiler.7.gz
%{_mandir}/man7/libpipewire-module-protocol-native.7.gz
%{_mandir}/man7/libpipewire-module-protocol-pulse.7.gz
%{_mandir}/man7/libpipewire-module-protocol-simple.7.gz
%{_mandir}/man7/libpipewire-module-pulse-tunnel.7.gz
%{_mandir}/man7/libpipewire-module-raop-discover.7.gz
%{_mandir}/man7/libpipewire-module-raop-sink.7.gz
%{_mandir}/man7/libpipewire-module-roc-sink.7.gz
%{_mandir}/man7/libpipewire-module-roc-source.7.gz
%{_mandir}/man7/libpipewire-module-rt.7.gz
%{_mandir}/man7/libpipewire-module-rtp-sap.7.gz
%{_mandir}/man7/libpipewire-module-rtp-session.7.gz
%{_mandir}/man7/libpipewire-module-rtp-sink.7.gz
%{_mandir}/man7/libpipewire-module-rtp-source.7.gz
%{_mandir}/man7/libpipewire-module-session-manager.7.gz
%{_mandir}/man7/libpipewire-module-vban-recv.7.gz
%{_mandir}/man7/libpipewire-module-vban-send.7.gz
%{_mandir}/man7/libpipewire-module-x11-bell.7.gz
%{_mandir}/man7/libpipewire-module-zeroconf-discover.7.gz
%{_mandir}/man7/libpipewire-modules.7.gz
%files gstreamer
%{_libdir}/gstreamer-1.0/libgstpipewire.*
@ -585,31 +657,35 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%{_datadir}/doc/pipewire/html
%files utils
%{_bindir}/pw-mon
%{_bindir}/pw-metadata
%{_bindir}/pw-dsdplay
%{_bindir}/pw-mididump
%{_bindir}/pw-midiplay
%{_bindir}/pw-midirecord
%{_bindir}/pw-cli
%{_bindir}/pw-dot
%{_bindir}/pw-cat
%{_bindir}/pw-cli
%{_bindir}/pw-config
%{_bindir}/pw-dot
%{_bindir}/pw-dsdplay
%{_bindir}/pw-dump
%{_bindir}/pw-encplay
%{_bindir}/pw-link
%{_bindir}/pw-loopback
%{_bindir}/pw-metadata
%{_bindir}/pw-mididump
%{_bindir}/pw-midiplay
%{_bindir}/pw-midirecord
%{_bindir}/pw-mon
%{_bindir}/pw-play
%{_bindir}/pw-profiler
%{_bindir}/pw-record
%{_bindir}/pw-reserve
%{_bindir}/pw-top
%{_mandir}/man1/pw-mon.1*
%{_mandir}/man1/pw-cli.1*
%{_mandir}/man1/pw-cat.1*
%{_mandir}/man1/pw-cli.1*
%{_mandir}/man1/pw-config.1*
%{_mandir}/man1/pw-dot.1*
%{_mandir}/man1/pw-dump.1*
%{_mandir}/man1/pw-link.1*
%{_mandir}/man1/pw-loopback.1*
%{_mandir}/man1/pw-metadata.1*
%{_mandir}/man1/pw-mididump.1*
%{_mandir}/man1/pw-mon.1*
%{_mandir}/man1/pw-profiler.1*
%{_mandir}/man1/pw-top.1*
@ -630,13 +706,15 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%endif
%if %{with jack}
%files jack-audio-connection-kit
%files jack-audio-connection-kit-libs
%{_bindir}/pw-jack
%{_mandir}/man1/pw-jack.1*
%{_libdir}/pipewire-%{apiversion}/jack/libjack.so.*
%{_libdir}/pipewire-%{apiversion}/jack/libjacknet.so.*
%{_libdir}/pipewire-%{apiversion}/jack/libjackserver.so.*
%{_datadir}/pipewire/jack.conf
%files jack-audio-connection-kit
%{_sysconfdir}/ld.so.conf.d/pipewire-jack-%{_arch}.conf
%files jack-audio-connection-kit-devel
@ -649,6 +727,8 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%if %{with jackserver_plugin}
%files plugin-jack
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-jack-tunnel.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-jackdbus-detect.so
%{_libdir}/spa-%{spaversion}/jack/
%endif
@ -657,12 +737,53 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%{_libdir}/spa-%{spaversion}/libcamera/
%endif
%if %{with vulkan}
%files plugin-vulkan
%{_libdir}/spa-%{spaversion}/vulkan/
%endif
%if %{with pulse}
%files pulseaudio
%{_bindir}/pipewire-pulse
%{_mandir}/man1/pipewire-pulse.1*
%{_userunitdir}/pipewire-pulse.*
%{_datadir}/pipewire/pipewire-pulse.conf
%dir %{_datadir}/pipewire/pipewire-pulse.conf.d/
%{_datadir}/pipewire/pipewire-pulse.conf.avail/20-upmix.conf
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-protocol-pulse.so
%{_mandir}/man1/pipewire-pulse.1*
%{_mandir}/man5/pipewire-pulse.conf.5.gz
%{_mandir}/man7/pipewire-pulse-module-alsa-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-alsa-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-always-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-combine-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-echo-cancel.7.gz
%{_mandir}/man7/pipewire-pulse-module-gsettings.7.gz
%{_mandir}/man7/pipewire-pulse-module-jackdbus-detect.7.gz
%{_mandir}/man7/pipewire-pulse-module-ladspa-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-ladspa-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-loopback.7.gz
%{_mandir}/man7/pipewire-pulse-module-native-protocol-tcp.7.gz
%{_mandir}/man7/pipewire-pulse-module-null-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-pipe-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-pipe-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-raop-discover.7.gz
%{_mandir}/man7/pipewire-pulse-module-remap-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-remap-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-roc-sink-input.7.gz
%{_mandir}/man7/pipewire-pulse-module-roc-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-roc-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-rtp-recv.7.gz
%{_mandir}/man7/pipewire-pulse-module-rtp-send.7.gz
%{_mandir}/man7/pipewire-pulse-module-simple-protocol-tcp.7.gz
%{_mandir}/man7/pipewire-pulse-module-switch-on-connect.7.gz
%{_mandir}/man7/pipewire-pulse-module-tunnel-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-tunnel-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-virtual-sink.7.gz
%{_mandir}/man7/pipewire-pulse-module-virtual-source.7.gz
%{_mandir}/man7/pipewire-pulse-module-x11-bell.7.gz
%{_mandir}/man7/pipewire-pulse-module-zeroconf-discover.7.gz
%{_mandir}/man7/pipewire-pulse-module-zeroconf-publish.7.gz
%{_mandir}/man7/pipewire-pulse-modules.7.gz
%endif
%if %{with v4l2}
@ -674,7 +795,33 @@ systemctl --no-reload preset --global pipewire.socket >/dev/null 2>&1 || :
%files module-x11
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-x11-bell.so
%if %{with ffado}
%files module-ffado
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-ffado-driver.so
%endif
%if %{with roc}
%files module-roc
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-roc-sink.so
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-roc-source.so
%endif
%if %{with libmysofa}
%files module-filter-chain-sofa
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-filter-chain-sofa.so
%endif
%if %{with lv2}
%files module-filter-chain-lv2
%{_libdir}/pipewire-%{apiversion}/libpipewire-module-filter-chain-lv2.so
%endif
%changelog
* Mon Jan 08 2024 Wim Taymans <wtaymans@redhat.com> - 1.0.0-1
- Update to version 1.0.0
- Add patch to avoid crash in deviceprovider.
- Resolves: RHEL-17641
* Tue Aug 01 2023 Wim Taymans <wtaymans@redhat.com> - 0.3.67-2
- Add patch for removing inotify on /dev
- Resolves: rhbz#2221868

2
pipewire.sysusers Normal file
View File

@ -0,0 +1,2 @@
#Type Name ID GECOS Home directory Shell
u pipewire - "PipeWire System Daemon" /run/pipewire -

View File

@ -1 +1 @@
SHA512 (pipewire-0.3.67.tar.gz) = 6d306485e4f023f19b1a79237019986a4373ff7becd2f1864f949d4a93b41b4e1f1e858ba90082d97319e6a9966c960483592dfa92bea7cc758e385bf51f9575
SHA512 (pipewire-1.0.0.tar.gz) = a6bafce94fb059c07200ee8228d470fd403c25426aa0c274a0e1675ff3fe6569cbd7722718937eaf4781e3183c86f41b4cc9c2a212be7423a3197e5b43045235