summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound/pcm/sound.h
diff options
context:
space:
mode:
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