Accepting request 922338 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/922338 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pipewire?expand=0&rev=42
This commit is contained in:
commit
7043ad4ccd
2
_service
2
_service
@ -3,7 +3,7 @@
|
|||||||
<service name="obs_scm" mode="disabled">
|
<service name="obs_scm" mode="disabled">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://gitlab.freedesktop.org/pipewire/pipewire.git</param>
|
<param name="url">https://gitlab.freedesktop.org/pipewire/pipewire.git</param>
|
||||||
<param name="revision">refs/tags/0.3.37</param>
|
<param name="revision">refs/tags/0.3.38</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="tar" mode="buildtime"/>
|
<service name="tar" mode="buildtime"/>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:987bda6882f7ca78a31e74e17cbc85ea884eb7075ec0267848a2dac987e8ba32
|
|
||||||
size 10380813
|
|
3
pipewire-0.3.38.obscpio
Normal file
3
pipewire-0.3.38.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c72e38a0f5606ef6d680945ff304340606f314a67e7f83695ed943d1e8495fa8
|
||||||
|
size 10433037
|
@ -1,3 +1,46 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 30 10:03:37 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.3.38:
|
||||||
|
* Highlights
|
||||||
|
- Topic based logging was added to improve debugging.
|
||||||
|
- An off-by-one error was fixed in the audio resampler that could
|
||||||
|
cause distortion when downsampling.
|
||||||
|
- Various bluetooth compatibility improvements.
|
||||||
|
- More fixes and improvements.
|
||||||
|
* PipeWire
|
||||||
|
- module-pulse-tunnel now has better default latency to make it work
|
||||||
|
better in more cases. There is also an option to configure the
|
||||||
|
desired latency.
|
||||||
|
- pw-cli now has readline support.
|
||||||
|
- Topic based logging was added. Log lines can now be filtered by
|
||||||
|
topic using wildcards. This should improve debugging.
|
||||||
|
- The systemd service files should now have better descriptions.
|
||||||
|
- Fix a crash in module-zeroconf-discover when unloading.
|
||||||
|
- Fix a crash in filter-chain when using unaligned memory.
|
||||||
|
* ALSA
|
||||||
|
- Sync the udev rules and profiles with pulseaudio.
|
||||||
|
- Fix a memory leak.
|
||||||
|
* SPA plugins
|
||||||
|
- An off-by-one error was fixed in the resampler that could cause
|
||||||
|
distortion when downsampling. (#1646)
|
||||||
|
* Bluetooth
|
||||||
|
- Avoid probing the native backend because it might block for DBus
|
||||||
|
activation. This fixes some long startup times.
|
||||||
|
- Fix the kernel version check, 5.14.x kernels should also support
|
||||||
|
mSBC.
|
||||||
|
- Fix FastStream microphone support in more cases.
|
||||||
|
- Add workaround for Intel AX200.
|
||||||
|
- SCO sink should now also work in follower mode.
|
||||||
|
* PulseAudio server
|
||||||
|
- Make the service file require a session manager.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 29 18:51:13 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
- Add BuildRequires: pkgconfig(readline) so pw-cli is built with
|
||||||
|
readline support
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 23 09:20:46 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
|
Thu Sep 23 09:20:46 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: pipewire
|
name: pipewire
|
||||||
version: 0.3.37
|
version: 0.3.38
|
||||||
mtime: 1632385039
|
mtime: 1632991350
|
||||||
commit: c41e3553bf0a6b76d8949c081ba633f7a6343d19
|
commit: 47a294c5bf52656998a7f43b13068c02001add77
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: pipewire
|
Name: pipewire
|
||||||
Version: 0.3.37
|
Version: 0.3.38
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Multimedia Framework designed to be an audio and video server and more
|
Summary: A Multimedia Framework designed to be an audio and video server and more
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -104,6 +104,7 @@ BuildRequires: pkgconfig(libudev)
|
|||||||
BuildRequires: pkgconfig(libusb-1.0)
|
BuildRequires: pkgconfig(libusb-1.0)
|
||||||
BuildRequires: pkgconfig(libva)
|
BuildRequires: pkgconfig(libva)
|
||||||
BuildRequires: pkgconfig(ncurses)
|
BuildRequires: pkgconfig(ncurses)
|
||||||
|
BuildRequires: pkgconfig(readline)
|
||||||
BuildRequires: pkgconfig(sbc)
|
BuildRequires: pkgconfig(sbc)
|
||||||
BuildRequires: pkgconfig(sdl2)
|
BuildRequires: pkgconfig(sdl2)
|
||||||
BuildRequires: pkgconfig(sndfile)
|
BuildRequires: pkgconfig(sndfile)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user