diff options
| author | Martin Blapp <mbr@FreeBSD.org> | 2003-04-28 21:38:38 +0000 |
|---|---|---|
| committer | Martin Blapp <mbr@FreeBSD.org> | 2003-04-28 21:38:38 +0000 |
| commit | a75556723f15cdceede656df317cbba3ca2c2694 (patch) | |
| tree | c6ae41744a28acba5fe17a44529794e160d12a55 | |
| parent | 76f344139cfc69d716badfa778cd28e57acbe136 (diff) | |
Notes
| -rw-r--r-- | sys/sys/soundcard.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/sys/soundcard.h b/sys/sys/soundcard.h index 87334134e958..e56a90fedef3 100644 --- a/sys/sys/soundcard.h +++ b/sys/sys/soundcard.h @@ -95,6 +95,7 @@ #define SNDCARD_OPL 28 #include <sys/types.h> +#include <machine/endian.h> #ifndef _IOWR #include <sys/ioccom.h> #endif /* !_IOWR */ @@ -161,6 +162,13 @@ struct snd_size { #define AFMT_U16_BE 0x00000100 /* Big endian unsigned 16-bit */ #define AFMT_MPEG 0x00000200 /* MPEG MP2/MP3 audio */ #define AFMT_AC3 0x00000400 /* Dolby Digital AC3 */ + +#if BYTE_ORDER == LITTLE_ENDIAN +#define AFMT_S16_NE AFMT_S16_LE /* native endian signed 16 */ +#else +#define AFMT_S16_NE AFMT_S16_BE +#endif + /* * 32-bit formats below used for 24-bit audio data where the data is stored * in the 24 most significant bits and the least significant bits are not used |
