[packages/pipewire] upstream patch to fix name prop regression; rel 2
atler
atler at pld-linux.org
Wed Jul 6 09:23:11 CEST 2022
commit 76089183bcdcd936bce6f50a99e767f77b0e266e
Author: Jan Palus <atler at pld-linux.org>
Date: Wed Jul 6 09:22:08 2022 +0200
upstream patch to fix name prop regression; rel 2
name-prop.patch | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
pipewire.spec | 4 ++-
2 files changed, 91 insertions(+), 1 deletion(-)
---
diff --git a/pipewire.spec b/pipewire.spec
index 00cbd33..bb228ef 100644
--- a/pipewire.spec
+++ b/pipewire.spec
@@ -14,13 +14,14 @@ Summary: PipeWire - server and user space API to deal with multimedia pipelines
Summary(pl.UTF-8): PipeWire - serwer i API przestrzeni użytkownika do obsługi potoków multimedialnych
Name: pipewire
Version: 0.3.53
-Release: 1
+Release: 2
License: MIT, LGPL v2+, GPL v2
Group: Libraries
#Source0Download: https://github.com/PipeWire/pipewire/releases
Source0: https://github.com/PipeWire/pipewire/archive/%{version}/%{name}-%{version}.tar.gz
# Source0-md5: 655786201c376a0dcaa64bb5fe3ebb4b
Patch0: %{name}-gcc.patch
+Patch1: name-prop.patch
URL: https://pipewire.org/
%if %{with jack}
BuildRequires: SDL2-devel >= 2
@@ -296,6 +297,7 @@ Wtyczka udostępniająca źródło i cel obrazu PipeWire dla GStreamera.
%prep
%setup -q
%patch0 -p1
+%patch1 -p1
%build
%meson build \
diff --git a/name-prop.patch b/name-prop.patch
new file mode 100644
index 0000000..51361a4
--- /dev/null
+++ b/name-prop.patch
@@ -0,0 +1,88 @@
+From 76350cebefe9bdabe24e9d043b83737547c225d8 Mon Sep 17 00:00:00 2001
+From: Wim Taymans <wtaymans at redhat.com>
+Date: Tue, 5 Jul 2022 20:41:01 +0200
+Subject: [PATCH] audioconvert: fix PROP_INFO
+
+The description needs to be set. The name is the unique name of the
+property and the id the predefined property id.
+
+Fixes #2488
+---
+ spa/plugins/audioconvert/audioconvert.c | 16 ++++++++--------
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/spa/plugins/audioconvert/audioconvert.c b/spa/plugins/audioconvert/audioconvert.c
+index 9f8097b01..6df4d7ef7 100644
+--- a/spa/plugins/audioconvert/audioconvert.c
++++ b/spa/plugins/audioconvert/audioconvert.c
+@@ -437,21 +437,21 @@ static int impl_node_enum_params(void *object, int seq,
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_volume),
+- SPA_PROP_INFO_name, SPA_POD_String("Volume"),
++ SPA_PROP_INFO_description, SPA_POD_String("Volume"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_RANGE_Float(p->volume, 0.0, 10.0));
+ break;
+ case 1:
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_mute),
+- SPA_PROP_INFO_name, SPA_POD_String("Mute"),
++ SPA_PROP_INFO_description, SPA_POD_String("Mute"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_Bool(p->channel.mute));
+ break;
+ case 2:
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_channelVolumes),
+- SPA_PROP_INFO_name, SPA_POD_String("Channel Volumes"),
++ SPA_PROP_INFO_description, SPA_POD_String("Channel Volumes"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_RANGE_Float(p->volume, 0.0, 10.0),
+ SPA_PROP_INFO_container, SPA_POD_Id(SPA_TYPE_Array));
+ break;
+@@ -459,7 +459,7 @@ static int impl_node_enum_params(void *object, int seq,
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_channelMap),
+- SPA_PROP_INFO_name, SPA_POD_String("Channel Map"),
++ SPA_PROP_INFO_description, SPA_POD_String("Channel Map"),
+ SPA_PROP_INFO_type, SPA_POD_Id(SPA_AUDIO_CHANNEL_UNKNOWN),
+ SPA_PROP_INFO_container, SPA_POD_Id(SPA_TYPE_Array));
+ break;
+@@ -467,14 +467,14 @@ static int impl_node_enum_params(void *object, int seq,
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_monitorMute),
+- SPA_PROP_INFO_name, SPA_POD_String("Monitor Mute"),
++ SPA_PROP_INFO_description, SPA_POD_String("Monitor Mute"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_Bool(p->monitor.mute));
+ break;
+ case 5:
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_monitorVolumes),
+- SPA_PROP_INFO_name, SPA_POD_String("Monitor Volumes"),
++ SPA_PROP_INFO_description, SPA_POD_String("Monitor Volumes"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_RANGE_Float(p->volume, 0.0, 10.0),
+ SPA_PROP_INFO_container, SPA_POD_Id(SPA_TYPE_Array));
+ break;
+@@ -482,14 +482,14 @@ static int impl_node_enum_params(void *object, int seq,
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_softMute),
+- SPA_PROP_INFO_name, SPA_POD_String("Soft Mute"),
++ SPA_PROP_INFO_description, SPA_POD_String("Soft Mute"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_Bool(p->soft.mute));
+ break;
+ case 7:
+ param = spa_pod_builder_add_object(&b,
+ SPA_TYPE_OBJECT_PropInfo, id,
+ SPA_PROP_INFO_id, SPA_POD_Id(SPA_PROP_softVolumes),
+- SPA_PROP_INFO_name, SPA_POD_String("Soft Volumes"),
++ SPA_PROP_INFO_description, SPA_POD_String("Soft Volumes"),
+ SPA_PROP_INFO_type, SPA_POD_CHOICE_RANGE_Float(p->volume, 0.0, 10.0),
+ SPA_PROP_INFO_container, SPA_POD_Id(SPA_TYPE_Array));
+ break;
+--
+GitLab
+
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/pipewire.git/commitdiff/76089183bcdcd936bce6f50a99e767f77b0e266e
More information about the pld-cvs-commit
mailing list