mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-22 17:17:03 +02:00
mpv: backport fix for pipewire-1.4.0
This commit is contained in:
parent
25d95aede9
commit
4a9684ccfc
2 changed files with 34 additions and 1 deletions
33
srcpkgs/mpv/patches/0.39.0-pipewire-1.4-fix.patch
Normal file
33
srcpkgs/mpv/patches/0.39.0-pipewire-1.4-fix.patch
Normal file
|
@ -0,0 +1,33 @@
|
|||
https://github.com/mpv-player/mpv/commit/c9970b5ba66e25aeab36cdbdb91b973f2d3f8d90.patch
|
||||
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;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'mpv'
|
||||
pkgname=mpv
|
||||
version=0.39.0
|
||||
revision=2
|
||||
revision=3
|
||||
build_style=meson
|
||||
configure_args="-Dcdda=enabled -Ddvbin=enabled -Ddvdnav=enabled
|
||||
-Dlibmpv=true -Dcplugins=enabled
|
||||
|
|
Loading…
Add table
Reference in a new issue