Mercurial > audlegacy-plugins
changeset 3189:ab6c7ebcd301
alsa-ng: Only support 16bit output for now. Someone else can debug this crap.
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Fri, 19 Jun 2009 09:14:22 -0500 |
| parents | 68bb898b8ae0 |
| children | 2f5be25204f3 |
| files | src/alsa-ng/alsa-util.c |
| diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alsa-ng/alsa-util.c Fri Jun 19 09:10:13 2009 -0500 +++ b/src/alsa-ng/alsa-util.c Fri Jun 19 09:14:22 2009 -0500 @@ -20,6 +20,7 @@ #include "alsa-stdinc.h" static alsaplug_format_mapping_t alsaplug_format_conv_tbl[] = { +#ifdef NOTYET {FMT_FLOAT, SND_PCM_FORMAT_FLOAT}, {FMT_S32_LE, SND_PCM_FORMAT_S32_LE}, {FMT_S32_BE, SND_PCM_FORMAT_S32_BE}, @@ -30,6 +31,7 @@ {FMT_U24_LE, SND_PCM_FORMAT_U24_LE}, {FMT_U24_BE, SND_PCM_FORMAT_U24_BE}, {FMT_U24_NE, SND_PCM_FORMAT_U24}, +#endif {FMT_S16_LE, SND_PCM_FORMAT_S16_LE}, {FMT_S16_BE, SND_PCM_FORMAT_S16_BE}, {FMT_S16_NE, SND_PCM_FORMAT_S16},
