package/pipewire: fix webrtc-audio-processing condition

The condition checking whether the webrtc-audio-processing package is
enabled, added in commit
3ccd3b4c38 ("package/pipewire: bump to
version 0.3.32") is obviously incorrect, and can never be true.

Fix the condition to use the correct variable instead.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 52f8db409f)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Thomas Petazzoni 2024-01-10 21:51:53 +01:00 committed by Peter Korsgaard
parent 7fe875886f
commit 6750152143

View File

@ -225,7 +225,7 @@ else
PIPEWIRE_CONF_OPTS += -Dcompress-offload=disabled
endif
ifeq ($(WEBRTC_AUDIO_PROCESSING),y)
ifeq ($(BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING),y)
PIPEWIRE_CONF_OPTS += -Decho-cancel-webrtc=enabled
PIPEWIRE_DEPENDENCIES += webrtc-audio-processing
else