Add Pulseaudio output

This commit is contained in:
Iwan Timmer
2015-12-27 21:13:09 +01:00
parent 6a0079f3ae
commit 0ed8b0937f
4 changed files with 118 additions and 1 deletions

View File

@@ -88,6 +88,9 @@ AUDIO_RENDERER_CALLBACKS* platform_get_audio(enum platform system) {
return &audio_callbacks_sdl;
#endif
default:
#ifdef HAVE_PULSE
return &audio_callbacks_pulse;
#endif
return &audio_callbacks_alsa;
}
return NULL;