aboutsummaryrefslogtreecommitdiffstats
path: root/audio/audio.c
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2010-07-28 12:20:14 -0700
committerDavid 'Digit' Turner <digit@android.com>2010-08-27 05:40:08 -0700
commit415a4b1f54f896bf28abe1beb2d8005a3d98f531 (patch)
tree417214fffb0be3e0f9e150fd74d83bf8bcaa1997 /audio/audio.c
parent3f16680b70d6c065fd2c1672ae324a49c5d1d316 (diff)
downloadexternal_qemu-415a4b1f54f896bf28abe1beb2d8005a3d98f531.zip
external_qemu-415a4b1f54f896bf28abe1beb2d8005a3d98f531.tar.gz
external_qemu-415a4b1f54f896bf28abe1beb2d8005a3d98f531.tar.bz2
Add a PulseAudio audio backend for Linux.
Change-Id: Ifaf876c41ab6c7275ba7d1dc8e12139f62840cd6
Diffstat (limited to 'audio/audio.c')
-rw-r--r--audio/audio.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/audio/audio.c b/audio/audio.c
index 1980450..aa4102b 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -42,6 +42,9 @@
#define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
static struct audio_driver *drvtab[] = {
+#ifdef CONFIG_PULSEAUDIO
+ &pa_audio_driver,
+#endif
#ifdef CONFIG_ESD
&esd_audio_driver,
#endif