diff options
author | jkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-28 10:54:31 +0000 |
---|---|---|
committer | jkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-28 10:54:31 +0000 |
commit | 92828938a340c26b4fd5a568439ad700a1f09835 (patch) | |
tree | a6a1f427b794e932f8cfaf87844466e2bef09312 /libao2 | |
parent | 52b53568c268bfe00b432bb09dcb27e77d7978f4 (diff) |
Move the sun audio driver near the start of the list of audio drivers, so
that it has priority over the 'null' driver. On solaris (without OSS
drivers), the sun audio driver is now the default audio driver.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1726 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2')
-rw-r--r-- | libao2/audio_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libao2/audio_out.c b/libao2/audio_out.c index bf416ad148..8f9668df15 100644 --- a/libao2/audio_out.c +++ b/libao2/audio_out.c @@ -42,6 +42,9 @@ ao_functions_t* audio_out_drivers[] = #ifdef USE_OSS_AUDIO &audio_out_oss, #endif +#ifdef USE_SUN_AUDIO + &audio_out_sun, +#endif &audio_out_null, #ifdef HAVE_ALSA5 &audio_out_alsa5, @@ -55,9 +58,6 @@ ao_functions_t* audio_out_drivers[] = #ifdef HAVE_SDL &audio_out_sdl, #endif -#ifdef USE_SUN_AUDIO - &audio_out_sun, -#endif &audio_out_pcm, // &audio_out_pss, NULL |