Mercurial > sdl-ios-xcode
comparison src/audio/dma/SDL_dmaaudio.c @ 3798:c8b3d3d13ed1 SDL-ryan-multiple-audio-device
Audio bootstraps can now specify that a driver is only to be used if
explicitly requested (for things like the "disk" driver that is always
available but you would never want to default to using).
Trimmed out code that can be handled by stubs in the core. The "dummy" driver
is pretty damned small now. :)
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 04 Oct 2006 21:27:53 +0000 |
parents | 589bc3d060cd |
children | 2c5387c0a642 |
comparison
equal
deleted
inserted
replaced
3797:9dc81c6acaf5 | 3798:c8b3d3d13ed1 |
---|---|
115 return 1; | 115 return 1; |
116 } | 116 } |
117 | 117 |
118 AudioBootStrap DMA_bootstrap = { | 118 AudioBootStrap DMA_bootstrap = { |
119 DMA_DRIVER_NAME, "OSS /dev/dsp DMA audio", | 119 DMA_DRIVER_NAME, "OSS /dev/dsp DMA audio", |
120 DMA_Available, DMA_Init | 120 DMA_Available, DMA_Init, 0 |
121 }; | 121 }; |
122 | 122 |
123 | 123 |
124 static int | 124 static int |
125 DMA_DetectDevices(int iscapture) | 125 DMA_DetectDevices(int iscapture) |