From e8e5747650626442f8f9940ad5bc37b21ca85ad9 Mon Sep 17 00:00:00 2001 From: Takamichi Horikawa Date: Mon, 17 Jul 2017 00:38:13 +0900 Subject: soundout autoconf --- gtk/soundout/soundout.c | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 gtk/soundout/soundout.c (limited to 'gtk/soundout/soundout.c') diff --git a/gtk/soundout/soundout.c b/gtk/soundout/soundout.c deleted file mode 100644 index 56134be..0000000 --- a/gtk/soundout/soundout.c +++ /dev/null @@ -1,14 +0,0 @@ -#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; - //ss = jackout_init(clientname, srate, cbfunc, userptr); - if (ss) return ss; - //ss = pulseout_init(clientname, srate, cbfunc, userptr); - if (ss) return ss; - ss = alsaout_init(clientname, srate, cbfunc, userptr); - return ss; -} -- cgit v1.2.3