mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-06 23:28:04 -04:00
add preliminary alsa driver too
This commit is contained in:
parent
26d3ca0d29
commit
32d23d03ac
3 changed files with 150 additions and 0 deletions
4
sndout.c
4
sndout.c
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue