Skip to content

Commit

Permalink
On recent distributions ALSA pipes streams through PulseAudio anyway,…
Browse files Browse the repository at this point in the history
… so using PulseAudio first when it's available will improve latency and reduce ALSA configuration quirks.
  • Loading branch information
slouken committed Oct 13, 2009
1 parent 7650386 commit 5036b39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/audio/SDL_audio.c
Expand Up @@ -39,16 +39,16 @@ static AudioBootStrap *bootstrap[] = {
#if SDL_AUDIO_DRIVER_BSD
&BSD_AUDIO_bootstrap,
#endif
#if SDL_AUDIO_DRIVER_PULSE
&PULSE_bootstrap,
#endif
#if SDL_AUDIO_DRIVER_ALSA
&ALSA_bootstrap,
#endif
#if SDL_AUDIO_DRIVER_OSS
&DSP_bootstrap,
&DMA_bootstrap,
#endif
#if SDL_AUDIO_DRIVER_PULSE
&PULSE_bootstrap,
#endif
#if SDL_AUDIO_DRIVER_QNXNTO
&QNXNTOAUDIO_bootstrap,
#endif
Expand Down

0 comments on commit 5036b39

Please sign in to comment.