[MPlayer-cvslog] r19415 - trunk/libao2/audio_out.c
uau
subversion at mplayerhq.hu
Wed Aug 16 22:04:43 CEST 2006
Author: uau
Date: Wed Aug 16 22:04:43 2006
New Revision: 19415
Modified:
trunk/libao2/audio_out.c
Log:
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.
Modified: trunk/libao2/audio_out.c
==============================================================================
--- trunk/libao2/audio_out.c (original)
+++ trunk/libao2/audio_out.c Wed Aug 16 22:04:43 2006
@@ -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,
More information about the MPlayer-cvslog
mailing list