summaryrefslogtreecommitdiff
path: root/audio.c
diff options
context:
space:
mode:
authorMike Brady <mikebrady@eircom.net>2017-05-17 08:49:40 +0100
committerMike Brady <mikebrady@eircom.net>2017-05-17 08:49:40 +0100
commitb3ae05ea60787a6a25cc17ac5bb92baaa61b2940 (patch)
treeffadcc858892a9832499b3143a378b778f83c28a /audio.c
parent73d23c3dbc9b69745c86edc1c85f03c25f473170 (diff)
Initial very rough full-fat pulseaudio backend
Diffstat (limited to 'audio.c')
-rw-r--r--audio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/audio.c b/audio.c
index 915cb80..c4f6e6a 100644
--- a/audio.c
+++ b/audio.c
@@ -41,6 +41,9 @@ extern audio_output audio_soundio;
#ifdef CONFIG_PULSE
extern audio_output audio_pulse;
#endif
+#ifdef CONFIG_PA
+extern audio_output audio_pa;
+#endif
#ifdef CONFIG_ALSA
extern audio_output audio_alsa;
#endif
@@ -64,6 +67,9 @@ static audio_output *outputs[] = {
#ifdef CONFIG_PULSE
&audio_pulse,
#endif
+#ifdef CONFIG_PA
+ &audio_pa,
+#endif
#ifdef CONFIG_AO
&audio_ao,
#endif