From a9f76c6d86d6fbbc91878995f0d3ff8d94690418 Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10walls@gmail.com> Date: Thu, 13 Jun 2013 21:15:39 +0800 Subject: ao_wasapi0: add new wasapi event mode ao --- audio/out/ao.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'audio/out/ao.c') diff --git a/audio/out/ao.c b/audio/out/ao.c index 7abb33f89f..a95c9e8f51 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -42,6 +42,7 @@ extern const struct ao_driver audio_out_openal; extern const struct ao_driver audio_out_null; extern const struct ao_driver audio_out_alsa; extern const struct ao_driver audio_out_dsound; +extern const struct ao_driver audio_out_wasapi0; extern const struct ao_driver audio_out_pcm; extern const struct ao_driver audio_out_pss; extern const struct ao_driver audio_out_lavc; @@ -65,6 +66,9 @@ static const struct ao_driver * const audio_out_drivers[] = { #ifdef CONFIG_DSOUND &audio_out_dsound, #endif +#ifdef CONFIG_WASAPI0 + &audio_out_wasapi0, +#endif #ifdef CONFIG_PORTAUDIO &audio_out_portaudio, #endif -- cgit v1.2.3