All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/tinycompress: install to staging
@ 2023-01-31  6:45 James Hilliard
  2023-01-31  6:45 ` [Buildroot] [PATCH 2/2] package/pipewire: bump to version 0.3.65 James Hilliard
  2023-02-08 10:56 ` [Buildroot] [PATCH 1/2] package/tinycompress: install to staging Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: James Hilliard @ 2023-01-31  6:45 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain, James Hilliard

This will be needed for upcoming pipewire compress offload support.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/tinycompress/tinycompress.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/tinycompress/tinycompress.mk b/package/tinycompress/tinycompress.mk
index 062233ec80..c9cfbb574b 100644
--- a/package/tinycompress/tinycompress.mk
+++ b/package/tinycompress/tinycompress.mk
@@ -9,5 +9,6 @@ TINYCOMPRESS_SOURCE = tinycompress-$(TINYCOMPRESS_VERSION).tar.bz2
 TINYCOMPRESS_SITE = https://www.alsa-project.org/files/pub/tinycompress
 TINYCOMPRESS_LICENSE = BSD-3-Clause and LGPL-2.1
 TINYCOMPRESS_LICENSE_FILES = COPYING
+TINYCOMPRESS_INSTALL_STAGING = YES
 
 $(eval $(autotools-package))
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] package/pipewire: bump to version 0.3.65
  2023-01-31  6:45 [Buildroot] [PATCH 1/2] package/tinycompress: install to staging James Hilliard
@ 2023-01-31  6:45 ` James Hilliard
  2023-02-08 10:56   ` Peter Korsgaard
  2023-02-08 10:56 ` [Buildroot] [PATCH 1/2] package/tinycompress: install to staging Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: James Hilliard @ 2023-01-31  6:45 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain, James Hilliard

Add support for new compress-offload and pw-cat-ffmpeg features.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/pipewire/pipewire.hash |  2 +-
 package/pipewire/pipewire.mk   | 13 ++++++++++---
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/package/pipewire/pipewire.hash b/package/pipewire/pipewire.hash
index d8b5b0cc86..0e027aaa55 100644
--- a/package/pipewire/pipewire.hash
+++ b/package/pipewire/pipewire.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  24b218cf3bb1fb279c8c489c14cc9ae483e1da7b4c8215b2ee5a5ee831bae94f  pipewire-0.3.62.tar.bz2
+sha256  c78c95cdff2774418f0a9468e94a1b2800761d322f13104df6501e1a0dc92558  pipewire-0.3.65.tar.bz2
 sha256  8909c319a7e27dbb33a15b9035f89ab3b7b2f6a12f8bcddc755206a8db1ada44  COPYING
 sha256  be4be5d77424833edf31f53fc1f1cecb6996b9e2d747d9e6fb8f878362ebc92b  LICENSE
diff --git a/package/pipewire/pipewire.mk b/package/pipewire/pipewire.mk
index 6bcda0a93d..976d7783b9 100644
--- a/package/pipewire/pipewire.mk
+++ b/package/pipewire/pipewire.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-PIPEWIRE_VERSION = 0.3.62
+PIPEWIRE_VERSION = 0.3.65
 PIPEWIRE_SOURCE = pipewire-$(PIPEWIRE_VERSION).tar.bz2
 PIPEWIRE_SITE = https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/$(PIPEWIRE_VERSION)
 PIPEWIRE_LICENSE = MIT, LGPL-2.1+ (libspa-alsa), GPL-2.0 (libjackserver)
@@ -122,10 +122,10 @@ PIPEWIRE_CONF_OPTS += -Dbluez5=disabled -Dbluez5-codec-opus=disabled
 endif
 
 ifeq ($(BR2_PACKAGE_FFMPEG),y)
-PIPEWIRE_CONF_OPTS += -Dffmpeg=enabled
+PIPEWIRE_CONF_OPTS += -Dffmpeg=enabled -Dpw-cat-ffmpeg=enabled
 PIPEWIRE_DEPENDENCIES += ffmpeg
 else
-PIPEWIRE_CONF_OPTS += -Dffmpeg=disabled
+PIPEWIRE_CONF_OPTS += -Dffmpeg=disabled -Dpw-cat-ffmpeg=disabled
 endif
 
 ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
@@ -215,6 +215,13 @@ else
 PIPEWIRE_CONF_OPTS += -Dsdl2=disabled
 endif
 
+ifeq ($(BR2_PACKAGE_TINYCOMPRESS),y)
+PIPEWIRE_CONF_OPTS += -Dcompress-offload=enabled
+PIPEWIRE_DEPENDENCIES += tinycompress
+else
+PIPEWIRE_CONF_OPTS += -Dcompress-offload=disabled
+endif
+
 ifeq ($(WEBRTC_AUDIO_PROCESSING),y)
 PIPEWIRE_CONF_OPTS += -Decho-cancel-webrtc=enabled
 PIPEWIRE_DEPENDENCIES += webrtc-audio-processing
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/2] package/tinycompress: install to staging
  2023-01-31  6:45 [Buildroot] [PATCH 1/2] package/tinycompress: install to staging James Hilliard
  2023-01-31  6:45 ` [Buildroot] [PATCH 2/2] package/pipewire: bump to version 0.3.65 James Hilliard
@ 2023-02-08 10:56 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2023-02-08 10:56 UTC (permalink / raw)
  To: James Hilliard; +Cc: Julien Olivain, buildroot

>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:

 > This will be needed for upcoming pipewire compress offload support.
 > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 2/2] package/pipewire: bump to version 0.3.65
  2023-01-31  6:45 ` [Buildroot] [PATCH 2/2] package/pipewire: bump to version 0.3.65 James Hilliard
@ 2023-02-08 10:56   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2023-02-08 10:56 UTC (permalink / raw)
  To: James Hilliard; +Cc: Julien Olivain, buildroot

>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:

 > Add support for new compress-offload and pw-cat-ffmpeg features.
 > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-08 10:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-31  6:45 [Buildroot] [PATCH 1/2] package/tinycompress: install to staging James Hilliard
2023-01-31  6:45 ` [Buildroot] [PATCH 2/2] package/pipewire: bump to version 0.3.65 James Hilliard
2023-02-08 10:56   ` Peter Korsgaard
2023-02-08 10:56 ` [Buildroot] [PATCH 1/2] package/tinycompress: install to staging Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.