fix warning "pw.conf setting config.name to client-rt.conf is deprecated" introduced with Pipewire 1.3.81 (https://github.com/mpv-player/mpv/issues/15914) OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/mpv?expand=0&rev=316
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From c9970b5ba66e25aeab36cdbdb91b973f2d3f8d90 Mon Sep 17 00:00:00 2001
|
|
From: llyyr <llyyr.public@gmail.com>
|
|
Date: Wed, 19 Feb 2025 19:08:36 +0530
|
|
Subject: [PATCH] ao_pipewire: don't load client-rt.conf properties
|
|
|
|
Deprecated in https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/24bcacc6195ffbf8e40c9ea1374eb6666252eadc
|
|
|
|
Fixes: #15914
|
|
---
|
|
audio/out/ao_pipewire.c | 9 +++++----
|
|
1 file changed, 5 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/audio/out/ao_pipewire.c b/audio/out/ao_pipewire.c
|
|
index 5e6bb1fa4fdf7..88c48ddca60e7 100644
|
|
--- a/audio/out/ao_pipewire.c
|
|
+++ b/audio/out/ao_pipewire.c
|
|
@@ -510,10 +510,11 @@ static int pipewire_init_boilerplate(struct ao *ao)
|
|
if (pw_thread_loop_start(p->loop) < 0)
|
|
goto error;
|
|
|
|
- context = pw_context_new(
|
|
- pw_thread_loop_get_loop(p->loop),
|
|
- pw_properties_new(PW_KEY_CONFIG_NAME, "client-rt.conf", NULL),
|
|
- 0);
|
|
+ struct pw_properties *props = NULL;
|
|
+#if !PW_CHECK_VERSION(1, 3, 81)
|
|
+ props = pw_properties_new(PW_KEY_CONFIG_NAME, "client-rt.conf", NULL);
|
|
+#endif
|
|
+ context = pw_context_new(pw_thread_loop_get_loop(p->loop), props, 0);
|
|
if (!context)
|
|
goto error;
|
|
|