Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pipewire for openSUSE:Factory checked in at 2022-06-24 08:44:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pipewire (Old) and /work/SRC/openSUSE:Factory/.pipewire.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pipewire" Fri Jun 24 08:44:53 2022 rev:57 rq:984584 version:0.3.52 Changes: -------- --- /work/SRC/openSUSE:Factory/pipewire/pipewire.changes 2022-06-17 21:22:45.082781131 +0200 +++ /work/SRC/openSUSE:Factory/.pipewire.new.1548/pipewire.changes 2022-06-24 08:44:59.863118152 +0200 @@ -1,0 +2,8 @@ +Wed Jun 22 17:47:19 UTC 2022 - Antonio Larrosa <alarr...@suse.com> + +- Add patch from upstream to remove 44.1kHz from allowed rates. + This reverts the new behaviour in 0.3.52 which is causing + problems to too many people (boo#1200760): + * 0001-settings-remove-44.1KHz-from-allowed-rates-again.patch + +------------------------------------------------------------------- New: ---- 0001-settings-remove-44.1KHz-from-allowed-rates-again.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pipewire.spec ++++++ --- /var/tmp/diff_new_pack.pQ4Jki/_old 2022-06-24 08:45:00.443118802 +0200 +++ /var/tmp/diff_new_pack.pQ4Jki/_new 2022-06-24 08:45:00.447118807 +0200 @@ -64,6 +64,8 @@ Source99: baselibs.conf # PATCH-FIX-OPENSUSE reduce-meson-dependency.patch Patch0: reduce-meson-dependency.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-settings-remove-44.1KHz-from-allowed-rates-again.patch BuildRequires: docutils BuildRequires: doxygen BuildRequires: fdupes @@ -334,6 +336,7 @@ %if 0%{?sle_version} == 150300 %patch0 -p1 %endif +%patch1 -p1 %build %if %{pkg_vcmp gcc < 8} ++++++ 0001-settings-remove-44.1KHz-from-allowed-rates-again.patch ++++++ >From 16a7c274989f47b0c0d8ba192a30316b545bd26a Mon Sep 17 00:00:00 2001 From: Wim Taymans <wtaym...@redhat.com> Date: Fri, 17 Jun 2022 09:02:13 +0200 Subject: [PATCH] settings: remove 44.1KHz from allowed rates again It seems to cause too many problems. It people want rate switching they can add an override themselves. --- src/daemon/minimal.conf.in | 2 +- src/daemon/pipewire.conf.in | 2 +- src/pipewire/settings.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/daemon/minimal.conf.in b/src/daemon/minimal.conf.in index 49227dddf..8b3ba7640 100644 --- a/src/daemon/minimal.conf.in +++ b/src/daemon/minimal.conf.in @@ -27,7 +27,7 @@ context.properties = { ## Properties for the DSP configuration. #default.clock.rate = 48000 - #default.clock.allowed-rates = [ 44100 48000 ] + #default.clock.allowed-rates = [ 48000 ] #default.clock.quantum = 1024 #default.clock.min-quantum = 32 #default.clock.max-quantum = 2048 diff --git a/src/daemon/pipewire.conf.in b/src/daemon/pipewire.conf.in index 787e45f42..3b9f611b7 100644 --- a/src/daemon/pipewire.conf.in +++ b/src/daemon/pipewire.conf.in @@ -27,7 +27,7 @@ context.properties = { ## Properties for the DSP configuration. #default.clock.rate = 48000 - #default.clock.allowed-rates = [ 44100 48000 ] + #default.clock.allowed-rates = [ 48000 ] #default.clock.quantum = 1024 default.clock.min-quantum = 16 #default.clock.max-quantum = 2048 diff --git a/src/pipewire/settings.c b/src/pipewire/settings.c index 92d297ca3..c512e9658 100644 --- a/src/pipewire/settings.c +++ b/src/pipewire/settings.c @@ -41,7 +41,7 @@ #define NAME "settings" #define DEFAULT_CLOCK_RATE 48000u -#define DEFAULT_CLOCK_RATES "[ 44100 48000 ]" +#define DEFAULT_CLOCK_RATES "[ 48000 ]" #define DEFAULT_CLOCK_QUANTUM 1024u #define DEFAULT_CLOCK_MIN_QUANTUM 32u #define DEFAULT_CLOCK_MAX_QUANTUM 2048u -- GitLab