Searched defs:audio_config (Results 1 - 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/audio/dmedia/
H A DSDL_irixaudio.c187 ALconfig audio_config = alNewConfig(); local
189 if (audio_config) {
190 if (alSetChannels(audio_config, spec->channels) < 0) {
196 if ((alSetSampFmt(audio_config, fmt) >= 0) &&
197 ((!width) || (alSetWidth(audio_config, width) >= 0)) &&
198 (alSetQueueSize(audio_config, spec->samples * 2) >= 0) &&
199 (alSetChannels(audio_config, spec->channels) >= 0)) {
201 audio_port = alOpenPort("SDL audio", "w", audio_config);
207 alSetChannels(audio_config, spec->channels);
209 audio_config);
[all...]

Completed in 53 milliseconds