Mercurial > sdl-ios-xcode
comparison src/audio/SDL_audio.c @ 4547:963f939494a1 SDL-1.2
RedHat patch: SDL-1.2.14-audiodriver.patch
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 18 Jul 2010 11:12:27 -0700 |
parents | fe15c4e8efe6 |
children |
comparison
equal
deleted
inserted
replaced
4546:6f0706a60146 | 4547:963f939494a1 |
---|---|
34 #include <os2.h> | 34 #include <os2.h> |
35 #endif | 35 #endif |
36 | 36 |
37 /* Available audio drivers */ | 37 /* Available audio drivers */ |
38 static AudioBootStrap *bootstrap[] = { | 38 static AudioBootStrap *bootstrap[] = { |
39 #if SDL_AUDIO_DRIVER_PULSE | |
40 &PULSE_bootstrap, | |
41 #endif | |
42 #if SDL_AUDIO_DRIVER_ALSA | |
43 &ALSA_bootstrap, | |
44 #endif | |
39 #if SDL_AUDIO_DRIVER_BSD | 45 #if SDL_AUDIO_DRIVER_BSD |
40 &BSD_AUDIO_bootstrap, | 46 &BSD_AUDIO_bootstrap, |
41 #endif | |
42 #if SDL_AUDIO_DRIVER_PULSE | |
43 &PULSE_bootstrap, | |
44 #endif | |
45 #if SDL_AUDIO_DRIVER_ALSA | |
46 &ALSA_bootstrap, | |
47 #endif | 47 #endif |
48 #if SDL_AUDIO_DRIVER_OSS | 48 #if SDL_AUDIO_DRIVER_OSS |
49 &DSP_bootstrap, | 49 &DSP_bootstrap, |
50 &DMA_bootstrap, | 50 &DMA_bootstrap, |
51 #endif | 51 #endif |