comparison libao2/audio_out.c @ 12636:58dca847caa0

move macosx in the priority list after sdl, patch by Dan Christiansen
author alex
date Fri, 25 Jun 2004 14:52:04 +0000
parents 38f523e2c3ba
children 05d46af5e2bf
comparison
equal deleted inserted replaced
12635:1eab3821113c 12636:58dca847caa0
67 #endif 67 #endif
68 // native: 68 // native:
69 #ifdef HAVE_WIN32WAVEOUT 69 #ifdef HAVE_WIN32WAVEOUT
70 &audio_out_win32, 70 &audio_out_win32,
71 #endif 71 #endif
72 #ifdef MACOSX
73 &audio_out_macosx,
74 #endif
75 #ifdef USE_OSS_AUDIO 72 #ifdef USE_OSS_AUDIO
76 &audio_out_oss, 73 &audio_out_oss,
77 #endif 74 #endif
78 #ifdef HAVE_ALSA1X 75 #ifdef HAVE_ALSA1X
79 &audio_out_alsa, 76 &audio_out_alsa,
100 #ifdef HAVE_NAS 97 #ifdef HAVE_NAS
101 &audio_out_nas, 98 &audio_out_nas,
102 #endif 99 #endif
103 #ifdef HAVE_SDL 100 #ifdef HAVE_SDL
104 &audio_out_sdl, 101 &audio_out_sdl,
102 #endif
103 #ifdef MACOSX
104 &audio_out_macosx,
105 #endif 105 #endif
106 &audio_out_null, 106 &audio_out_null,
107 // should not be auto-selected: 107 // should not be auto-selected:
108 &audio_out_pcm, 108 &audio_out_pcm,
109 &audio_out_plugin, 109 &audio_out_plugin,