summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound/pcm/sound.h
diff options
context:
space:
mode:
authorcg <cg@FreeBSD.org>1999-12-29 03:46:54 +0000
committercg <cg@FreeBSD.org>1999-12-29 03:46:54 +0000
commit9ed7cb48bf4a00a23e7489706b0effe1c516cb5b (patch)
tree8bc40a7cac07c88c733e7cfecf813fb5eda76c93 /sys/dev/sound/pcm/sound.h
parent01077d3d3d15def38358b9a646d4af36c7e226c0 (diff)
downloadFreeBSD-src-9ed7cb48bf4a00a23e7489706b0effe1c516cb5b.zip
FreeBSD-src-9ed7cb48bf4a00a23e7489706b0effe1c516cb5b.tar.gz
- latest 2ndbuffer patch
- make chn_setdir work for rec on isa cards - note: es1371 does not irq in smp Submitted by: tanimura
Diffstat (limited to 'sys/dev/sound/pcm/sound.h')
-rw-r--r--sys/dev/sound/pcm/sound.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/sound/pcm/sound.h b/sys/dev/sound/pcm/sound.h
index d2409ef..5f34e50 100644
--- a/sys/dev/sound/pcm/sound.h
+++ b/sys/dev/sound/pcm/sound.h
@@ -106,8 +106,10 @@ struct isa_device { int dummy; };
/* many variables should be reduced to a range. Here define a macro */
#define RANGE(var, low, high) (var) = \
(((var)<(low))? (low) : ((var)>(high))? (high) : (var))
-
-#define DSP_BUFFSIZE (65536 - 256) /* XXX */
+/*
+#define DSP_BUFFSIZE (65536 - 256)
+*/
+#define DSP_BUFFSIZE (8192)
/* the last 256 bytes are room for buggy soundcard to overflow. */
/* make figuring out what a format is easier. got AFMT_STEREO already */
OpenPOWER on IntegriCloud