Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/Rebase' into Rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlo Benfatti committed Oct 10, 2023
2 parents a5d2b71 + 5ed3d7f commit e03f929
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/os/unix/pa_unix_hostapis.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ PaError PaSGI_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex
PaError PaAsiHpi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
PaError PaMacCore_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
PaError PaSkeleton_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
/* Android HostApi */
PaError PaOboe_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );

/** Note that on Linux, ALSA is placed before OSS so that the former is preferred over the latter.
*/
Expand Down Expand Up @@ -102,7 +104,11 @@ PaUtilHostApiInitializer *paHostApiInitializers[] =
#endif

#if PA_USE_PULSEAUDIO
PaPulseAudio_Initialize,
PaPulseAudio_Initialize,
#endif

#if PA_USE_OBOE
PaOboe_Initialize,
#endif

#if PA_USE_SKELETON
Expand Down

0 comments on commit e03f929

Please sign in to comment.