diff options
author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-02-17 11:31:59 +0100 |
---|---|---|
committer | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-02-17 11:31:59 +0100 |
commit | fcfb3c0951b6e2e06e7bf282e867576d8abb00c4 (patch) | |
tree | a035500aa54ab230387e453c8ec704436ad502c4 /plugins/audio/audio-pulse.c | |
parent | 8ea2dc9f4df0a6d61e430d53d19eb0ea3633bf23 (diff) |
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 <manuel.bachmann@iot.bzh>
Diffstat (limited to 'plugins/audio/audio-pulse.c')
-rw-r--r-- | plugins/audio/audio-pulse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/audio/audio-pulse.c b/plugins/audio/audio-pulse.c index 4caf3db5..ceffcf7d 100644 --- a/plugins/audio/audio-pulse.c +++ b/plugins/audio/audio-pulse.c @@ -94,6 +94,8 @@ PUBLIC unsigned char _pulse_init (const char *name, audioCtxHandleT *ctx) { client_count++; + if (verbose) fprintf (stderr, "Successfully initialized PulseAudio backend.\n"); + return 0; } |