From fcfb3c0951b6e2e06e7bf282e867576d8abb00c4 Mon Sep 17 00:00:00 2001 From: Manuel Bachmann Date: Wed, 17 Feb 2016 11:31:59 +0100 Subject: Audio plugin: choose between Pulse/ALSA at runtime If the AFB_AUDIO_OUTPUT environment variable is defined to "Pulse/Alsa", it will try to initialize the given backend (still falling back to Alsa for now). Signed-off-by: Manuel Bachmann --- plugins/audio/audio-alsa.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins/audio/audio-alsa.c') diff --git a/plugins/audio/audio-alsa.c b/plugins/audio/audio-alsa.c index 7310ea89..bc777fce 100644 --- a/plugins/audio/audio-alsa.c +++ b/plugins/audio/audio-alsa.c @@ -130,6 +130,8 @@ PUBLIC unsigned char _alsa_init (const char *name, audioCtxHandleT *ctx) { ctx->mute = _alsa_get_mute (num); ctx->idx = num; + if (verbose) fprintf (stderr, "Successfully initialized ALSA backend.\n"); + return 0; } -- cgit 1.2.3-korg