diff options
author | peter <peter@FreeBSD.org> | 1999-09-27 01:52:37 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-09-27 01:52:37 +0000 |
commit | e8fae9c7ab24582071ad80280a828801efddb2c1 (patch) | |
tree | 9a2c841a28cd1aa3b9ebf3939369f5f8880047ba | |
parent | 6d2191426df7b0d0cc6d3c27fc409709fef7e94e (diff) | |
download | FreeBSD-src-e8fae9c7ab24582071ad80280a828801efddb2c1.zip FreeBSD-src-e8fae9c7ab24582071ad80280a828801efddb2c1.tar.gz |
Seperate pcaudio from isa/snd and isa/sound - it's not worth this breaking
each time there is a change.
-rw-r--r-- | sys/i386/isa/pcaudio.c | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/sys/i386/isa/pcaudio.c b/sys/i386/isa/pcaudio.c index 7c913b2..e47c8d9 100644 --- a/sys/i386/isa/pcaudio.c +++ b/sys/i386/isa/pcaudio.c @@ -74,8 +74,40 @@ static char buffer2[BUF_SIZE]; static char buffer3[BUF_SIZE]; static char volume_table[256]; -#define DSP_ULAW_NOT_WANTED -#include <i386/isa/snd/ulaw.h> +static unsigned char ulaw_dsp[] = { + 3, 7, 11, 15, 19, 23, 27, 31, + 35, 39, 43, 47, 51, 55, 59, 63, + 66, 68, 70, 72, 74, 76, 78, 80, + 82, 84, 86, 88, 90, 92, 94, 96, + 98, 99, 100, 101, 102, 103, 104, 105, + 106, 107, 108, 109, 110, 111, 112, 113, + 113, 114, 114, 115, 115, 116, 116, 117, + 117, 118, 118, 119, 119, 120, 120, 121, + 121, 121, 122, 122, 122, 122, 123, 123, + 123, 123, 124, 124, 124, 124, 125, 125, + 125, 125, 125, 125, 126, 126, 126, 126, + 126, 126, 126, 126, 127, 127, 127, 127, + 127, 127, 127, 127, 127, 127, 127, 127, + 128, 128, 128, 128, 128, 128, 128, 128, + 128, 128, 128, 128, 128, 128, 128, 128, + 128, 128, 128, 128, 128, 128, 128, 128, + 253, 249, 245, 241, 237, 233, 229, 225, + 221, 217, 213, 209, 205, 201, 197, 193, + 190, 188, 186, 184, 182, 180, 178, 176, + 174, 172, 170, 168, 166, 164, 162, 160, + 158, 157, 156, 155, 154, 153, 152, 151, + 150, 149, 148, 147, 146, 145, 144, 143, + 143, 142, 142, 141, 141, 140, 140, 139, + 139, 138, 138, 137, 137, 136, 136, 135, + 135, 135, 134, 134, 134, 134, 133, 133, + 133, 133, 132, 132, 132, 132, 131, 131, + 131, 131, 131, 131, 130, 130, 130, 130, + 130, 130, 130, 130, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, + 128, 128, 128, 128, 128, 128, 128, 128, + 128, 128, 128, 128, 128, 128, 128, 128, + 128, 128, 128, 128, 128, 128, 128, 128, +}; static unsigned char alaw_linear[] = { 45, 214, 122, 133, 0, 255, 107, 149, |