Mercurial > sdl-ios-xcode
comparison src/audio/SDL_audio.c @ 4301:5007e6a66814 SDL-1.2
Debian patch: 209_alsa_priority.diff
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 10 Oct 2009 09:07:51 +0000 |
parents | 12da7861173e |
children | 33570eec2d4f |
comparison
equal
deleted
inserted
replaced
4300:602642738b83 | 4301:5007e6a66814 |
---|---|
37 /* Available audio drivers */ | 37 /* Available audio drivers */ |
38 static AudioBootStrap *bootstrap[] = { | 38 static AudioBootStrap *bootstrap[] = { |
39 #if SDL_AUDIO_DRIVER_BSD | 39 #if SDL_AUDIO_DRIVER_BSD |
40 &BSD_AUDIO_bootstrap, | 40 &BSD_AUDIO_bootstrap, |
41 #endif | 41 #endif |
42 #if SDL_AUDIO_DRIVER_ALSA | |
43 &ALSA_bootstrap, | |
44 #endif | |
42 #if SDL_AUDIO_DRIVER_OSS | 45 #if SDL_AUDIO_DRIVER_OSS |
43 &DSP_bootstrap, | 46 &DSP_bootstrap, |
44 &DMA_bootstrap, | 47 &DMA_bootstrap, |
45 #endif | |
46 #if SDL_AUDIO_DRIVER_ALSA | |
47 &ALSA_bootstrap, | |
48 #endif | 48 #endif |
49 #if SDL_AUDIO_DRIVER_PULSE | 49 #if SDL_AUDIO_DRIVER_PULSE |
50 &PULSE_bootstrap, | 50 &PULSE_bootstrap, |
51 #endif | 51 #endif |
52 #if SDL_AUDIO_DRIVER_QNXNTO | 52 #if SDL_AUDIO_DRIVER_QNXNTO |