# HG changeset patch # User uau # Date 1155758683 0 # Node ID 37decab2ed46ae00c5ce91d72eced0331efb3b7e # Parent df307a0503592a1adeec47ba1e48eb0f5b6723fc Move mpeg aos to the end of the autodetection list. At least mpegpes should be there since it now works without the corresponding vo but is not a particularly good ao overall. diff -r df307a050359 -r 37decab2ed46 libao2/audio_out.c --- a/libao2/audio_out.c Wed Aug 16 16:21:17 2006 +0000 +++ b/libao2/audio_out.c Wed Aug 16 20:04:43 2006 +0000 @@ -74,14 +74,6 @@ ao_functions_t* audio_out_drivers[] = { -// vo-related: will fail unless you also do -vo mpegpes/dxr2/ivtv - &audio_out_mpegpes, -#ifdef HAVE_DXR2 - &audio_out_dxr2, -#endif -#ifdef HAVE_IVTV - &audio_out_ivtv, -#endif // native: #ifdef HAVE_DIRECTX &audio_out_dsound, @@ -132,6 +124,13 @@ #ifdef USE_OPENAL &audio_out_openal, #endif + &audio_out_mpegpes, +#ifdef HAVE_DXR2 + &audio_out_dxr2, +#endif +#ifdef HAVE_IVTV + &audio_out_ivtv, +#endif &audio_out_null, // should not be auto-selected: &audio_out_pcm,