add preliminary alsa driver too

This commit is contained in:
Grazvydas Ignotas 2013-06-24 02:42:36 +03:00
parent 26d3ca0d29
commit 32d23d03ac
3 changed files with 150 additions and 0 deletions

View file

@ -13,6 +13,7 @@
#include <string.h>
#include "linux/sndout_oss.h"
#include "linux/sndout_alsa.h"
#include "sndout_sdl.h"
#include "sndout.h"
@ -58,6 +59,9 @@ static struct sndout_driver sndout_avail[] =
#ifdef HAVE_SDL
SNDOUT_DRIVER(sdl),
#endif
#ifdef HAVE_ALSA
SNDOUT_DRIVER(alsa),
#endif
#ifdef HAVE_OSS
SNDOUT_DRIVER(oss),
#endif