changeset 2900:7345a10e6012

Disable ao_mpegpes if compiled with libvo2
author mswitch
date Wed, 14 Nov 2001 13:07:08 +0000
parents 6885bf566271
children f77f8379f28f
files libao2/audio_out.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/audio_out.c	Wed Nov 14 11:51:36 2001 +0000
+++ b/libao2/audio_out.c	Wed Nov 14 13:07:08 2001 +0000
@@ -42,7 +42,9 @@
 extern ao_functions_t audio_out_dxr3;
 #endif
 extern ao_functions_t audio_out_pcm;
+#ifndef USE_LIBVO2
 extern ao_functions_t audio_out_mpegpes;
+#endif
 extern ao_functions_t audio_out_pss;
 
 ao_functions_t* audio_out_drivers[] =
@@ -73,7 +75,9 @@
 	&audio_out_dxr3,
 #endif
 	&audio_out_pcm,
+#ifndef USE_LIBVO2
 	&audio_out_mpegpes,
+#endif
 //	&audio_out_pss,
 	NULL
 };