# HG changeset patch # User diego # Date 1129072073 0 # Node ID 644baf91233c3b73f54cb0032e160c443467e395 # Parent be1316b8d1f64d6c70ef2dff3e50c6e62349fdf6 ao_macosx is a native audio output driver and should thus have priority over non-native outputs drivers like ao_sdl and the like. diff -r be1316b8d1f6 -r 644baf91233c libao2/audio_out.c --- a/libao2/audio_out.c Tue Oct 11 22:50:23 2005 +0000 +++ b/libao2/audio_out.c Tue Oct 11 23:07:53 2005 +0000 @@ -80,6 +80,9 @@ #ifdef HAVE_WIN32WAVEOUT &audio_out_win32, #endif +#ifdef MACOSX + &audio_out_macosx, +#endif #ifdef USE_OSS_AUDIO &audio_out_oss, #endif @@ -117,9 +120,6 @@ #ifdef HAVE_SDL &audio_out_sdl, #endif -#ifdef MACOSX - &audio_out_macosx, -#endif &audio_out_null, // should not be auto-selected: &audio_out_pcm,