summaryrefslogtreecommitdiffstats
path: root/rules/pulseaudio.in
blob: d00c56d9ede824f81503c4ed543cc8f0c0a1d56a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
## SECTION=multimedia_sound

menuconfig PULSEAUDIO
	tristate
	select HOST_MESON
	select HOST_ORC
	select LIBC_M
	select LIBC_RT
	select LIBC_PTHREAD
	select ALSA_LIB
	select ALSA_LIB_MIXER
	select ALSA_LIB_UCM
	select LIBCAP
	select LIBSNDFILE
	select ORC
	select LIBLTDL			if PULSEAUDIO_DAEMON
	select SYSTEMD			if PULSEAUDIO_SYSTEMD
	select SBC			if PULSEAUDIO_BLUETOOTH
	select DBUS			if PULSEAUDIO_BLUETOOTH
	select BLUEZ			if PULSEAUDIO_BLUETOOTH
	select BLUEZ_LIBBLUETOOTH	if PULSEAUDIO_BLUETOOTH
	select SPEEXDSP			if PULSEAUDIO_SPEEX
	select SPEEXDSP_FLOAT_API	if PULSEAUDIO_SPEEX
	select WEBRTC_AUDIO_PROCESSING1	if PULSEAUDIO_WEBRTC_AEC
	select UDEV
	select UDEV_LIBUDEV
	prompt "pulseaudio                    "
	help
	  PulseAudio is a sound system for POSIX OSes, meaning that it is a
	  proxy for your sound applications. It allows you to do advanced
	  operations on your sound data as it passes between your
	  application and your hardware.

if PULSEAUDIO

config PULSEAUDIO_SYSTEMD
	bool
	default INITMETHOD_SYSTEMD

config PULSEAUDIO_DAEMON
	bool
	default y
	prompt "install pulseaudio daemon"

if PULSEAUDIO_DAEMON

config PULSEAUDIO_SYSTEMD_UNIT
	bool
	default !SYSTEMD_UNITS_USER
	depends on PULSEAUDIO_SYSTEMD
	prompt "install systemd system unit file"

config PULSEAUDIO_SYSTEMD_UNIT_USER
	bool
	default y
	depends on PULSEAUDIO_SYSTEMD && SYSTEMD_UNITS_USER
	prompt "install systemd user unit file"

config PULSEAUDIO_BLUETOOTH
	bool
	prompt "enable bluetooth support"

config PULSEAUDIO_SPEEX
	bool
	default y
	prompt "enable speex based resamplers"
	help
	  The speex based resamplers provide the best cost/quality
	  trade-off on most platforms. It's recommended to only disable
	  this when no resampling is required.

config PULSEAUDIO_WEBRTC_AEC
	bool
	prompt "WebRTC-based echo canceller"
	help
	  Use the WebRTC audio processing library for echo cancellation. It
	  provides better quality than the builtin 'Adrian' echo canceller.

endif
endif