2010-05-26 17:29:56 -04:00
|
|
|
$OpenBSD: patch-libao2_audio_out_c,v 1.4 2010/05/26 21:29:56 jakemsr Exp $
|
|
|
|
--- libao2/audio_out.c.orig Sat Feb 20 21:02:49 2010
|
|
|
|
+++ libao2/audio_out.c Mon Mar 8 14:28:42 2010
|
2009-10-11 09:36:23 -04:00
|
|
|
@@ -43,6 +43,7 @@ extern const ao_functions_t audio_out_alsa5;
|
|
|
|
extern const ao_functions_t audio_out_alsa;
|
|
|
|
extern const ao_functions_t audio_out_nas;
|
|
|
|
extern const ao_functions_t audio_out_sdl;
|
|
|
|
+extern const ao_functions_t audio_out_sndio;
|
|
|
|
extern const ao_functions_t audio_out_sun;
|
|
|
|
extern const ao_functions_t audio_out_sgi;
|
|
|
|
extern const ao_functions_t audio_out_win32;
|
2010-05-26 17:29:56 -04:00
|
|
|
@@ -55,6 +56,7 @@ extern const ao_functions_t audio_out_v4l2;
|
2009-10-11 09:36:23 -04:00
|
|
|
extern const ao_functions_t audio_out_mpegpes;
|
|
|
|
extern const ao_functions_t audio_out_pcm;
|
|
|
|
extern const ao_functions_t audio_out_pss;
|
|
|
|
+extern const ao_functions_t audio_out_rtunes;
|
2008-02-12 06:33:16 -05:00
|
|
|
|
2009-10-11 09:36:23 -04:00
|
|
|
const ao_functions_t* const audio_out_drivers[] =
|
2008-02-12 06:33:16 -05:00
|
|
|
{
|
2010-05-26 17:29:56 -04:00
|
|
|
@@ -86,6 +88,9 @@ const ao_functions_t* const audio_out_drivers[] =
|
2009-10-11 09:36:23 -04:00
|
|
|
#ifdef CONFIG_SGI_AUDIO
|
2008-10-30 14:33:42 -04:00
|
|
|
&audio_out_sgi,
|
|
|
|
#endif
|
2009-10-11 09:36:23 -04:00
|
|
|
+#ifdef CONFIG_SNDIO_AUDIO
|
|
|
|
+ &audio_out_sndio,
|
2008-10-30 14:33:42 -04:00
|
|
|
+#endif
|
2009-10-11 09:36:23 -04:00
|
|
|
#ifdef CONFIG_SUN_AUDIO
|
2008-10-30 14:33:42 -04:00
|
|
|
&audio_out_sun,
|
|
|
|
#endif
|
2010-05-26 17:29:56 -04:00
|
|
|
@@ -124,6 +129,7 @@ const ao_functions_t* const audio_out_drivers[] =
|
2008-02-12 06:33:16 -05:00
|
|
|
&audio_out_null,
|
|
|
|
// should not be auto-selected:
|
2009-10-11 09:36:23 -04:00
|
|
|
&audio_out_pcm,
|
2008-02-12 06:33:16 -05:00
|
|
|
+ &audio_out_rtunes,
|
2009-10-11 09:36:23 -04:00
|
|
|
NULL
|
2008-02-12 06:33:16 -05:00
|
|
|
};
|
|
|
|
|