diff options
Diffstat (limited to 'soundout/soundout.c')
-rw-r--r-- | soundout/soundout.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/soundout/soundout.c b/soundout/soundout.c new file mode 100644 index 0000000..a749fe4 --- /dev/null +++ b/soundout/soundout.c @@ -0,0 +1,20 @@ +#include "soundout.h" +#include "jackout.h" +#include "pulseout.h" +#include "alsaout.h" + +struct sound_state *sound_init(const char *clientname, unsigned srate, sound_callback cbfunc, void *userptr) { + struct sound_state *ss = 0; +#ifdef ENABLE_JACK + ss = jackout_init(clientname, srate, cbfunc, userptr); +#endif + if (ss) return ss; +#ifdef ENABLE_PULSE + ss = pulseout_init(clientname, srate, cbfunc, userptr); +#endif + if (ss) return ss; +#ifdef ENABLE_ALSA + ss = alsaout_init(clientname, srate, cbfunc, userptr); +#endif + return ss; +} |