summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-04-13 20:13:27 +0100
committerSam James <sam@gentoo.org>2023-04-13 20:13:27 +0100
commit9f9e570758369b4d06c1d89984a6f1bb6242e272 (patch)
tree2ca029a5ead486210771b96b7121f7ff2c5dd6d3 /media-video/pipewire/files
parentmedia-video/wireplumber: Stabilize 0.4.14 amd64, #903538 (diff)
downloadgentoo-9f9e570758369b4d06c1d89984a6f1bb6242e272.tar.gz
gentoo-9f9e570758369b4d06c1d89984a6f1bb6242e272.tar.bz2
gentoo-9f9e570758369b4d06c1d89984a6f1bb6242e272.zip
media-video/pipewire: drop 0.3.68-r1
This ended up being a bad release. Use 0.3.69 instead. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-video/pipewire/files')
-rw-r--r--media-video/pipewire/files/0.3.68/nodes-idle.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/media-video/pipewire/files/0.3.68/nodes-idle.patch b/media-video/pipewire/files/0.3.68/nodes-idle.patch
deleted file mode 100644
index 33936ff3bf59..000000000000
--- a/media-video/pipewire/files/0.3.68/nodes-idle.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/3145
-https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/8748c77451ce332dd24549b414200499ede4f184
-
-From 8748c77451ce332dd24549b414200499ede4f184 Mon Sep 17 00:00:00 2001
-From: Wim Taymans <wtaymans@redhat.com>
-Date: Tue, 11 Apr 2023 16:31:44 +0200
-Subject: [PATCH] context: make driver runnable when we add a runnable node
-
-Explicitly make the driver runnable when we add a runnable node to it.
-
-We have to do this because the runnable node might not be directly linked
-to this driver.
-
-In the case of the echo-canceler, for example, a playback stream
-can be linked to the sink before the echo canceled virtual sink.
-All echo-cancel nodes are added to a source driver, which would not be
-activated because there is no direct path from the playback stream
-to the source river.
-
-Fixes #3145
---- a/src/pipewire/context.c
-+++ b/src/pipewire/context.c
-@@ -943,6 +943,8 @@ static void move_to_driver(struct pw_context *context, struct spa_list *nodes,
- spa_list_consume(n, nodes, sort_link) {
- spa_list_remove(&n->sort_link);
-
-+ driver->runnable |= n->runnable;
-+
- pw_log_debug(" follower: %p %s runnable:%u driver-runnable:%u", n, n->name,
- n->runnable, driver->runnable);
- pw_impl_node_set_driver(n, driver);
---
-GitLab
-
-