summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c')
-rw-r--r--3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c b/3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c
index a9b4a05d7f4..95cd89b9d5f 100644
--- a/3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c
+++ b/3rdparty/portaudio/src/os/unix/pa_unix_hostapis.c
@@ -26,13 +26,13 @@
*/
/*
- * The text above constitutes the entire PortAudio license; however,
+ * The text above constitutes the entire PortAudio license; however,
* the PortAudio community also makes the following non-binding requests:
*
* Any person wishing to distribute modifications to the Software is
* requested to send the modifications to the original developer so that
- * they can be incorporated into the canonical version. It is also
- * requested that these non-binding requests be included along with the
+ * they can be incorporated into the canonical version. It is also
+ * requested that these non-binding requests be included along with the
* license above.
*/
@@ -43,8 +43,10 @@
#include "pa_hostapi.h"
PaError PaJack_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
+PaError PaPulseAudio_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
PaError PaAlsa_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
PaError PaOSS_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
+PaError PaAudioIO_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
/* Added for IRIX, Pieter, oct 2, 2003: */
PaError PaSGI_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
/* Linux AudioScience HPI */
@@ -79,11 +81,15 @@ PaUtilHostApiInitializer *paHostApiInitializers[] =
#endif /* __linux__ */
+#if PA_USE_AUDIOIO
+ PaAudioIO_Initialize,
+#endif
+
#if PA_USE_JACK
PaJack_Initialize,
#endif
/* Added for IRIX, Pieter, oct 2, 2003: */
-#if PA_USE_SGI
+#if PA_USE_SGI
PaSGI_Initialize,
#endif
@@ -95,6 +101,10 @@ PaUtilHostApiInitializer *paHostApiInitializers[] =
PaMacCore_Initialize,
#endif
+#if PA_USE_PULSEAUDIO
+ PaPulseAudio_Initialize,
+#endif
+
#if PA_USE_SKELETON
PaSkeleton_Initialize,
#endif